/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Estilos específicos para páginas de autenticação */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    font-size: 48px;
    margin-bottom: 10px;
}

.login-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f5f7fa;
    min-height: 100vh;
}

/* Cards e Painéis */
.card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
}

    .card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

.card-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1565C0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header Administrativo */
.admin-header {
    background: linear-gradient(135deg, #722F37 0%, #4A1C1F 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-header .header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.admin-header .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.admin-header .logo-icon {
    font-size: 32px;
    line-height: 1;
}

.admin-header .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-header .logo-main {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.admin-header .logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}

.admin-header .nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
    justify-content: center;
    max-width: 600px;
}

.admin-header .nav-item {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.admin-header .nav-item:hover, 
.admin-header .nav-item.active {
    background-color: rgba(255,255,255,0.2);
}

.admin-header .user-info {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.admin-header .user-info {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.admin-header .user-info:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Dropdown Menu para Header Administrativo */
.admin-header .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
    display: none;
    margin-top: 8px;
    overflow: hidden;
}

.admin-header .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.admin-header .dropdown-item:hover:not(.disabled) {
    background-color: #f8f9fa;
}

.admin-header .dropdown-item.disabled {
    color: #6c757d;
    background-color: transparent;
    cursor: default;
    font-weight: 600;
}

.admin-header .dropdown-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 8px 0;
}

.admin-header .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Responsividade Header Administrativo */
@media (max-width: 1200px) {
    .admin-header .nav-menu {
        gap: 20px;
    }
    
    .admin-header .nav-item {
        padding: 8px 14px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .admin-header .header-content {
        padding: 0 20px;
    }
    
    .admin-header .logo-main {
        font-size: 18px;
    }
    
    .admin-header .logo-sub {
        font-size: 13px;
    }
    
    .admin-header .nav-menu {
        gap: 15px;
    }
    
    .admin-header .nav-item {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .admin-header .header-content {
        flex-wrap: wrap;
        min-height: auto;
        padding: 15px 20px;
    }
    
    .admin-header .header-left {
        flex: 1;
    }
    
    .admin-header .nav-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin-top: 15px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .admin-header .user-info {
        order: 2;
        flex: 0 0 auto;
    }
    
    .admin-header .nav-item {
        padding: 6px 10px;
        font-size: 12px;
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

    .nav-item:hover, .nav-item.active {
        background-color: rgba(255,255,255,0.2);
    }

.user-info {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

    .user-info:hover {
        background-color: rgba(255,255,255,0.2);
    }

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .stat-card h3 {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #1565C0;
    margin: 10px 0;
}

.stat-card p {
    font-size: 14px;
    color: #999;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1565C0 0%, #42A5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: width 0.6s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 30px;
    gap: 5px;
}

.tab {
    padding: 12px 24px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: #666;
}

    .tab:hover {
        background-color: #e9ecef;
    }

    .tab.active {
        background-color: white;
        color: #1565C0;
        font-weight: 600;
        border-color: #dee2e6;
        position: relative;
        top: 2px;
    }

/* Formulários */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

    .form-label.required::after {
        content: " *";
        color: #e74c3c;
    }

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #fafafa;
}

    .form-input:focus, .form-textarea:focus, .form-select:focus {
        outline: none;
        border-color: #1565C0;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
    }

    .form-input.error, .form-textarea.error {
        border-color: #e74c3c;
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.validation-message {
    font-size: 13px;
    color: #e74c3c;
    margin-top: 5px;
    display: none;
}

    .validation-message.show {
        display: block;
        animation: shake 0.3s ease-in-out;
    }

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Botões */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:active::before {
        width: 300px;
        height: 300px;
    }

.btn-primary {
    background-color: #1565C0;
    color: white;
}

    .btn-primary:hover {
        background-color: #0D47A1;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

    .btn-secondary:hover {
        background-color: #5a6268;
    }

.btn-success {
    background-color: #28a745;
    color: white;
}

    .btn-success:hover {
        background-color: #218838;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }

.btn-danger {
    background-color: #dc3545;
    color: white;
}

    .btn-danger:hover {
        background-color: #c82333;
    }

.btn-outline {
    background-color: transparent;
    border: 2px solid #1565C0;
    color: #1565C0;
}

    .btn-outline:hover {
        background-color: #1565C0;
        color: white;
    }

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Tabelas */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

    .table th {
        background-color: #f8f9fa;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        color: #444;
        border-bottom: 2px solid #dee2e6;
        white-space: nowrap;
    }

    .table td {
        padding: 15px;
        border-bottom: 1px solid #dee2e6;
    }

    .table tr:hover {
        background-color: #f8f9fa;
    }

    .table tr:last-child td {
        border-bottom: none;
    }

/* Badges e Status */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
}

.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Upload Area */
.upload-area {
    border: 3px dashed #1565C0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

    .upload-area:hover {
        background-color: #e3f2fd;
        border-color: #0D47A1;
    }

    .upload-area.dragover {
        background-color: #bbdefb;
        border-color: #0D47A1;
        transform: scale(1.02);
    }

.upload-icon {
    font-size: 48px;
    color: #1565C0;
    margin-bottom: 10px;
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    animation: fadeIn 0.3s;
}

    .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10001;
}

.toast {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s;
    transition: all 0.3s;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid #28a745;
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast.info {
    border-left: 4px solid #17a2b8;
}

.toast-icon {
    font-size: 20px;
}

.toast.success .toast-icon {
    color: #28a745;
}

.toast.error .toast-icon {
    color: #dc3545;
}

.toast.info .toast-icon {
    color: #17a2b8;
}

/* Validation styles */
.validation-message {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.text-danger {
    color: #dc3545 !important;
}

.input-validation-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-validation-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.field-validation-valid {
    display: none;
}

/* Melhorar destaque visual dos campos obrigatórios */
.form-label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* Estilo para campos com erro */
.form-input.input-validation-error,
.form-select.input-validation-error,
.form-textarea.input-validation-error {
    border: 2px solid #dc3545;
    background-color: #fff5f5;
}

/* Melhorar visibilidade das mensagens de erro */
.validation-summary-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 20px;
}

/* Rating Component */
.rating-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.rating-item {
    width: 40px;
    height: 40px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    background-color: #f8f9fa;
}

    .rating-item:hover {
        border-color: #1565C0;
        background-color: #e3f2fd;
        transform: scale(1.1);
    }

    .rating-item.selected {
        background-color: #e3f2fd;
        color: #0d47a1;
        border-color: #1a237e;
        border-width: 3px;
        font-weight: 700;
        box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.5);
    }

/* Criteria Cards */
.criteria-card {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

    .criteria-card:hover {
        border-color: #1565C0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

.criteria-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.criteria-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* File List */
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

    .file-item:hover {
        background: #e9ecef;
    }

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-icon {
    font-size: 24px;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    font-size: 12px;
    color: #666;
}

.file-actions {
    display: flex;
    gap: 10px;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1565C0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Alert Styles */
.alert-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid;
}

.alert-warning {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-left-color: #17a2b8;
    color: #0c5460;
}

.alert-success {
    background: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 1001;
}

    .dropdown-menu a {
        display: block;
        padding: 8px 12px;
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }

        .dropdown-menu a:hover {
            background-color: #f8f9fa;
            color: #1565C0;
        }

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: #6c757d;
}

.text-danger {
    color: #dc3545;
}

.text-success {
    color: #28a745;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.p-4 {
    padding: 1.5rem;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

/* Animações extras */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Estilos específicos para validação CNPJ em tempo real */
.cnpj-validation-message {
    font-size: 13px !important;
    margin-top: 5px !important;
    display: block !important;
}

/* Toast com botão de fechar */
.toast-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    font-weight: bold;
    margin-left: auto;
    cursor: pointer;
    padding: 0 5px;
}

    .toast-close:hover {
        color: #333;
    }

/* Estilos específicos para a tela de inscrições (Admin) */
#inscricoes-validacao .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

#inscricoes-validacao .stat-card {
    min-height: 120px;
}

#inscricoes-validacao .table {
    font-size: 14px;
}

#inscricoes-validacao .table th {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

#inscricoes-validacao .table td {
    padding: 12px 10px;
    vertical-align: middle;
}

#inscricoes-validacao .badge {
    font-size: 11px;
    padding: 3px 8px;
}

#inscricoes-validacao .btn {
    font-size: 12px;
    padding: 6px 12px;
}

#inscricoes-validacao .btn-outline {
    border-width: 1px;
}

/* Melhorar responsividade da tabela de inscrições */
@media (max-width: 1200px) {
    #inscricoes-validacao .table-container {
        overflow-x: auto;
    }
    
    #inscricoes-validacao .table {
        min-width: 1000px;
    }
}

/* Estilo para ações em linha */
#inscricoes-validacao .table td:last-child {
    min-width: 180px;
}

#inscricoes-validacao .table td div[style*="display: flex"] {
    flex-wrap: wrap;
    gap: 3px !important;
}

/* Melhorar aparência dos filtros */
#inscricoes-validacao .card .form-group {
    margin-bottom: 0;
}

#inscricoes-validacao .form-select,
#inscricoes-validacao .form-input {
    font-size: 14px;
    padding: 10px 12px;
}

/* Melhorias na apresentação de formulários */
.form-input.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.form-input.success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

/* Form Row Layout */
.form-row {
    display: flex;
    gap: 15px;
}

    .form-row .form-group {
        flex: 1;
    }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        flex: 1;
        min-width: 120px;
    }

    .modal-content {
        margin: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .header-content {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-item {
        font-size: 14px;
        padding: 6px 8px;
    }

    .logo {
        font-size: 16px;
    }

    .login-container {
        padding: 10px;
    }

    .login-box {
        padding: 30px 20px;
    }
}
