.date-filter {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

.date-filter select,
.date-filter input {
    height: 38px;
    padding: 0 10px;
    border: 1px solid #d7dce3;
    border-radius: 8px;
    background: white;
}

.date-filter button {
    height: 38px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: #1f6feb;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.date-filter button:hover {
    background: #185abc;
}

@media (max-width: 900px) {
    .date-filter {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .date-filter select,
    .date-filter input,
    .date-filter button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}
