/* Main Stylesheet - Modern Professional Theme */

:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --accent-color: #1e3c72;
    --accent-light: #2a5298;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
}

body.bohnpaper-body {
    background: var(--bg-tertiary);
    min-height: 100vh;
    position: relative;
}

body.bohnpaper-body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='%231a75ff' stroke-width='0.5'/%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%231a75ff'/%3E%3Ccircle cx='5' cy='30' r='1' fill='%231a75ff'/%3E%3Ccircle cx='55' cy='30' r='1' fill='%231a75ff'/%3E%3Ccircle cx='30' cy='5' r='1' fill='%231a75ff'/%3E%3Ccircle cx='30' cy='55' r='1' fill='%231a75ff'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

[data-theme="dark"] body.bohnpaper-body::before {
    opacity: 0.06;
}

body.bohnpaper-body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-primary));
    z-index: 1;
    pointer-events: none;
}

/* Top Header */
.top-header {
    background: var(--bg-card);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 2px solid var(--border-color);
    padding-right: 16px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.app-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-text {
    font-size: 14px;
    color: var(--text-light);
}

.welcome-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Primary Navigation Bar */
.primary-navbar {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 50%, var(--primary-color) 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
}

.primary-navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    position: relative;
}

.primary-navbar a:last-child {
    border-right: none;
}

.primary-navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.primary-navbar a:hover {
    background-color: rgba(0,0,0,0.15);
}

.primary-navbar a:hover::after {
    transform: scaleX(1);
}

.primary-navbar i {
    font-size: 12px;
}

/* Secondary Navigation Bar (Button Style) */
.secondary-navbar {
    background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
    padding: 18px 24px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.secondary-navbar .nav-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.secondary-navbar .nav-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #6b3d94);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.secondary-navbar .nav-btn:active {
    transform: translateY(0);
}

.secondary-navbar .nav-btn i {
    font-size: 12px;
}

/* Page Content */
.page-content {
    padding: 28px;
    min-height: calc(100vh - 200px);
    flex: 1;
}

/* Menu Table & Navigation Styles */
.menu-table {
    width: 100%;
    padding: 0;
    border-collapse: collapse;
    margin: 0 0 30px 0;
    font-size: 12px;
    text-align: left;
    background: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    border-radius: 8px;
    overflow: visible;
}

.menu-table td {
    font-size: 14px;
    text-align: left;
    border: none;
    padding: 12px 16px;
    vertical-align: middle;
}

.menu-table td:first-child {
    padding: 12px;
    background-color: white;
    border-right: 2px solid var(--border-color);
}

.menu-table td:nth-child(2) {
    padding: 0;
    overflow: visible;
}

.menu-table img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.menu-table img:hover {
    transform: scale(1.05);
}

.welcome-cell {
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    font-weight: 600;
    color: var(--text-dark);
    background-color: white;
    letter-spacing: 0.3px;
    padding: 12px 16px !important;
    border-left: 2px solid var(--border-color);
}

.welcome-cell strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Primary Menu */
.menu {
    list-style: none;
    width: 100%;
    color: white;
    text-align: left;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 50%, var(--primary-color) 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    border-radius: 0 8px 8px 0;
}

.menu li {
    float: none;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.menu li:last-child {
    border-right: none;
}

.menu li a {
    display: block;
    color: white;
    background: transparent;
    text-align: center;
    padding: 14px 18px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.menu li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.menu li a:hover::after {
    transform: scaleX(1);
}

.menu li.active a {
    background-color: rgba(0, 0, 0, 0.15);
    color: white;
}

.menu li.active a::after {
    transform: scaleX(1);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    list-style: none;
    border-radius: 0 0 8px 8px;
    min-width: 200px;
    margin-top: 0;
    padding: 0;
    z-index: 9999;
}

.menu li:hover .submenu {
    display: block;
}

.submenu li {
    float: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    padding: 12px 18px;
    text-align: left;
    color: white;
    font-size: 12px;
    background: transparent;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    padding-left: 24px;
}

.submenu li.active a {
    background-color: rgba(0, 0, 0, 0.15);
    border-bottom: none;
    border-left: 3px solid white;
    padding-left: 15px;
}

.menu li i {
    margin-right: 6px;
    font-size: 12px;
}

.submenu li i {
    margin-right: 6px;
    font-size: 11px;
}

/* Footer */
.bohnpaper-footer {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-top: 3px solid var(--primary-color);
    padding: 28px;
    text-align: center;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    box-shadow: 0 -4px 12px rgba(102, 126, 234, 0.15);
}

.bohnpaper-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bohnpaper-footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.bohnpaper-footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Container adjustments */
.container,
.container-fluid {
    background: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .header-left, .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .logo-section {
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 12px;
    }
    
    .primary-navbar {
        flex-direction: column;
    }
    
    .primary-navbar a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        width: 100%;
    }
    
    .primary-navbar a:last-child {
        border-bottom: none;
    }
    
    .secondary-navbar {
        flex-direction: column;
        padding: 12px 16px;
    }
    
    .secondary-navbar .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-content {
        padding: 16px;
    }
    
    .login-box {
        margin: 1rem;
    }
    
    .container-fluid {
        padding: 1rem;
    }
    
    .card {
        margin-bottom: 16px;
    }
    
    .table {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 18px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .primary-navbar a {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .page-content {
        padding: 12px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .form-control, .form-select {
        font-size: 16px;
    }
}

/* Login Page - Modern Professional Design */
body.login-page {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e57c2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Animated background elements */
body.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

body.login-page .container {
    position: relative;
    z-index: 1;
}

.login-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
    max-width: 100%;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.login-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.login-logo img {
    max-width: 160px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.login-logo img:hover {
    transform: scale(1.05);
}

.login-form {
    padding: 2.5rem;
}

.login-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.login-form .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    margin-bottom: 1.5rem;
}

.login-form .form-control:hover {
    border-color: #d1d5db;
    background: white;
}

.login-form .form-control:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), inset 0 0 0 0px rgba(102, 126, 234, 0.05);
    outline: none;
}

.login-form .btn {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.login-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.login-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5568d3 0%, #6b3d94 100%);
}

.login-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.login-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login-form .btn-primary:active::before {
    width: 300px;
    height: 300px;
}

.login-form .form-group {
    margin-bottom: 0;
}

body.login-page .alert {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
    animation: slideDown 0.4s ease-out;
    font-size: 0.95rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.login-page .alert-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

body.login-page .alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

body.login-page .alert strong {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

body.login-page .alert .btn-close {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

body.login-page .alert .btn-close:hover {
    opacity: 0.75;
}

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-box {
        margin: 1rem;
    }
    
    .login-form {
        padding: 2rem;
    }
    
    .login-logo {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .login-logo img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 1.5rem;
    }
    
    .login-form .form-control {
        margin-bottom: 1.25rem;
    }
    
    .login-form .btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, white 0%, var(--light-bg) 100%);
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-dark) !important;
}

.logo-small {
    margin-right: 0.5rem;
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 16px;
}

.card-body {
    padding: 20px;
}

/* Tables */
.table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 12px 16px;
}

.table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
    background-color: var(--light-bg);
    box-shadow: inset 0 0 10px rgba(102, 126, 234, 0.05);
}

.table td {
    padding: 12px 16px;
    vertical-align: middle;
}

/* Badges */
.badge {
    padding: 6px 10px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    border-radius: 6px;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Forms */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:hover, .form-select:hover {
    border-color: var(--primary-color);
    background-color: rgba(102, 126, 234, 0.02);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    padding: 10px 18px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #6b3d94);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--text-light);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
    background: #5a6268;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.btn-success:hover {
    background: #218838;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-danger {
    background: var(--danger-color);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.btn-danger:hover {
    background: #c82333;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 8px;
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 14px 16px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

/* Footer */
footer {
    border-top: 3px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .header-left, .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .logo-section {
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 12px;
    }
    
    .primary-navbar {
        flex-direction: column;
    }
    
    .primary-navbar a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        width: 100%;
    }
    
    .primary-navbar a:last-child {
        border-bottom: none;
    }
    
    .secondary-navbar {
        flex-direction: column;
        padding: 12px 16px;
    }
    
    .secondary-navbar .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-content {
        padding: 16px;
    }
    
    .login-box {
        margin: 1rem;
    }
    
    .container-fluid {
        padding: 1rem;
    }
    
    .card {
        margin-bottom: 16px;
    }
    
    .table {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 18px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .primary-navbar a {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .page-content {
        padding: 12px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .form-control, .form-select {
        font-size: 16px;
    }
}
