/* Responsive styles for FURA website */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .results-table th:nth-child(5),
    .results-table td:nth-child(5) {
        display: none;
    }
    
    .auth-buttons {
        flex-direction: column;
    }
    
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .results-table th:nth-child(4),
    .results-table td:nth-child(4) {
        display: none;
    }
    
    .search-panel {
        padding: 20px 15px;
    }
    
    .tab-btn {
        padding: 10px 5px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .results-table th:nth-child(3),
    .results-table td:nth-child(3) {
        display: none;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .detail-row {
        flex-direction: column;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
}