/* Main Typography & Layout for Anliq */
html, body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-size: 15px;
    color: #2c3e50;
    background: #f8f9fa;
    line-height: 1.6;
}

.container, .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
}

h1, .page-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h3, h4, h5, h6 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}

label, .form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
}

.table, .dataTable, .form-control, .form-select, .btn, .badge, .alert {
    font-size: 15px;
}

.table thead th {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card, .content-card, .page-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 24px;
}

/* Navigation Styling */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
}

.dropdown-item {
    font-size: 15px;
}

.dropdown-item-text {
    font-size: 14px;
}

/* Custom navbar styling */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 450;
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.dropdown-item:hover {
    background-color: #f8f9fc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container, .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    h1, .page-title {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 1.05rem;
    }
    .navbar-brand {
        font-size: 1.3rem;
    }
    .navbar-nav .nav-link {
        font-size: 14px;
    }
    .card, .content-card, .page-header {
        padding: 14px 10px;
    }
} 