/* projects_query.css */
@media screen and (max-width: 900px) {
    .projects-container {
        padding-left: 0;
        width: 90%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .projects-controls {
        flex-direction: column;
        align-items: stretch;
    }
    #filter-toggle-btn {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .projects-title {
        font-size: 24px;
    }
    
    .projects-section {
        padding: 16px;
    }

    .form-radio-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-summary {
        grid-template-columns: 1fr;
    }

    .toast-notification {
        top: auto;
        bottom: 20px;
        right: 5%;
        left: 5%;
        justify-content: space-between;
    }

    .projects-controls .projects-search-input {
        max-width: 100%;
    }
}