.zf-daterange {
    display: flex;
    gap: 10px;
    font-size: 13px;
    align-items: flex-end;
    position: relative;
    flex-wrap: wrap;
}

.zf-daterange__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zf-daterange__label {
    font-weight: 600;
    font-size: 12px;
    color: #333;
}

.zf-daterange__input {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e1e5e9;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    font-family: inherit;
    background: #fff;
    min-width: 150px;
    outline: none;
}
.zf-daterange__input:focus {
    border-color: #1870D1;
}

.zf-daterange__calendar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 12px;
    max-width: 292px;
    width: 100%;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 100;
}

.zf-daterange__calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 5px;
}

.zf-daterange__nav {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.zf-daterange__nav:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zf-daterange__selectors {
    display: flex;
    gap: 8px;
}

.zf-daterange__select {
    padding: 4px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 13px;
    background: white;
    cursor: pointer;
    font-family: inherit;
}
.zf-daterange__select:focus {
    outline: none;
    border-color: #667eea;
}

.zf-daterange__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.zf-daterange__day-header {
    text-align: center;
    padding: 8px 4px;
    font-weight: 600;
    color: #666;
    font-size: 11px;
}

.zf-daterange__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    font-size: 11px;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border: none;
    font-family: inherit;
}
.zf-daterange__day:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zf-daterange__day--other-month {
    color: #ccc;
    background: #f1f3f4;
}
.zf-daterange__day--today {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 700;
}
.zf-daterange__day--selected {
    background: linear-gradient(135deg, #764ba2, #667eea);
    color: white;
    font-weight: 700;
}
.zf-daterange__day--in-range {
    background: #c1d8fd;
    color: #222;
}
.zf-daterange__day:disabled {
    color: #aaa;
    background: #f1f1f1;
    cursor: not-allowed;
    pointer-events: none;
}
