/* Datepicker Styles - Small Widget [pf_datepicker] */
.pf-datepick-container {
    max-width: 960px; /* 150% of 640px */
    margin: 1rem auto;
    padding: 0;
}

.pf-datepick {
    background: #fff;
}

.pf-datepick-fields {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px; /* Small gap between elements */
}

.pf-field-item {
    flex: 1;
    position: relative;
    border: 1px solid #d4a574;
    box-sizing: border-box;
}

.pf-field-item input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #6b6b6b;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    height: 100%;
}

.pf-field-item input::placeholder {
    color: #a0a0a0;
    font-size: 14px;
}

.pf-submit-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: #b8956a;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-submit-btn:hover {
    background: #a08555;
}