/* Port Union Management System Custom Styles - Mobile Optimized */

:root {
    /* Primary Port Union Colors - Navy Blue & Gold Theme */
    --port-primary: #1e3a8a;      /* Deep Navy Blue */
    --port-secondary: #1e40af;     /* Medium Navy Blue */
    --port-accent: #f59e0b;        /* Gold/Amber */
    --port-accent-light: #fbbf24;  /* Light Gold */
    --port-accent-dark: #d97706;   /* Dark Gold */
    
    /* Supporting Colors */
    --port-success: #059669;       /* Green */
    --port-warning: #d97706;       /* Orange */
    --port-danger: #dc2626;        /* Red */
    --port-info: #0891b2;          /* Cyan */
    
    /* Neutral Colors */
    --port-light: #f8fafc;         /* Light Gray */
    --port-gray: #64748b;          /* Medium Gray */
    --port-dark: #1e293b;          /* Dark Gray */
    
    /* Background Colors */
    --port-bg-primary: #ffffff;    /* White */
    --port-bg-secondary: #f1f5f9;  /* Light Blue Gray */
    --port-bg-accent: #fef3c7;     /* Light Gold Background */
}

/* Mobile-First Responsive Design */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--port-bg-secondary);
    color: var(--port-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    html {
        font-size: 16px;
    }
}

/* Navigation Enhancements - Mobile Optimized */
.navbar {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%) !important;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.3);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.1rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 35px;
    margin-right: 8px;
    width: auto;
}

.navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: white !important;
}

.navbar-nav .nav-link.active {
    background-color: var(--port-accent);
    color: white !important;
    border-radius: 0.375rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile Navigation Adjustments */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 30px;
        margin-right: 6px;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        height: 25px;
        margin-right: 4px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Card Enhancements - Mobile Optimized */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    background-color: var(--port-bg-primary);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(30, 58, 138, 0.15);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    color: white;
    border-bottom: 1px solid rgba(30, 58, 138, 0.2);
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
}

.card-body {
    padding: 1rem;
}

/* Mobile Card Adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 0.75rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .card-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .card {
        margin-bottom: 0.5rem;
        border-radius: 0.375rem;
    }
    
    .card-body {
        padding: 0.5rem;
    }
    
    .card-header {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .card:hover {
        transform: none; /* Disable hover effects on mobile */
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--port-primary), var(--port-accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    position: absolute;
    left: -15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--port-primary);
    background-color: var(--port-accent);
}

.timeline-content {
    background-color: var(--port-bg-primary);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 0.375rem;
    padding: 1rem;
    margin-left: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(30, 58, 138, 0.1);
}

.timeline-content h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--port-primary);
}

/* Zone Summary Styles */
.zone-summary {
    background: linear-gradient(135deg, var(--port-bg-accent) 0%, #fef3c7 100%);
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid var(--port-accent-light);
}

/* Button Enhancements - Mobile Optimized */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--port-secondary) 0%, var(--port-primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 0.375rem 0.75rem rgba(30, 58, 138, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--port-accent) 0%, var(--port-accent-dark) 100%);
    border: none;
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--port-accent-dark) 0%, var(--port-accent) 100%);
    transform: translateY(-1px);
    box-shadow: 0 0.375rem 0.75rem rgba(245, 158, 11, 0.3);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.175);
}

/* Mobile Button Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .btn-group .btn {
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.5rem;
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    .btn-group {
        width: 100%;
    }
    
    .btn-group .btn {
        flex: 1;
        margin-bottom: 0;
    }
    
    /* Stack buttons vertically on mobile */
    .btn-stack-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-stack-mobile .btn {
        width: 100%;
        margin-bottom: 0;
    }
}

/* Stats Cards */
.bg-primary { 
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%) !important; 
}
.bg-success { 
    background: linear-gradient(135deg, var(--port-success) 0%, #047857 100%) !important; 
}
.bg-warning { 
    background: linear-gradient(135deg, var(--port-accent) 0%, var(--port-accent-dark) 100%) !important; 
}
.bg-info { 
    background: linear-gradient(135deg, var(--port-info) 0%, #0e7490 100%) !important; 
}
.bg-danger { 
    background: linear-gradient(135deg, var(--port-danger) 0%, #b91c1c 100%) !important; 
}

/* Table Styles - Mobile Responsive */
.table {
    background-color: var(--port-bg-primary);
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: left;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: var(--port-bg-secondary);
    font-weight: 600;
}

/* Mobile Table Adjustments */
@media (max-width: 768px) {
    .table th,
    .table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.85rem;
    }
    
    .table-responsive {
        border: none;
    }
}

@media (max-width: 576px) {
    .table th,
    .table td {
        padding: 0.25rem;
        font-size: 0.8rem;
    }
    
    /* Hide less important columns on mobile */
    .table .d-none-mobile {
        display: none !important;
    }
    
    /* Stack table rows on very small screens */
    .table-mobile-stack {
        display: block;
    }
    
    .table-mobile-stack thead {
        display: none;
    }
    
    .table-mobile-stack tbody,
    .table-mobile-stack tr,
    .table-mobile-stack td {
        display: block;
    }
    
    .table-mobile-stack tr {
        border: 1px solid #dee2e6;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        border-radius: 0.375rem;
    }
    
    .table-mobile-stack td {
        border: none;
        padding: 0.25rem 0;
    }
    
    .table-mobile-stack td:before {
        content: attr(data-label) ": ";
        font-weight: bold;
        display: inline-block;
        width: 40%;
    }
}

.table-hover tbody tr:hover {
    background-color: var(--port-bg-accent);
}

.table thead th {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    color: white;
    border: none;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 0.375rem;
    border: 1px solid rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--port-primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.badge-primary {
    background-color: var(--port-primary);
}

.badge-accent {
    background-color: var(--port-accent);
    color: white;
}

/* Port Zone Specific Styles */
.port-zone-card {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    color: white;
}

.worker-type-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--port-accent);
    color: white;
}

/* Member Card Styles */
.member-card {
    border-left: 4px solid var(--port-primary);
}

.member-card.premium {
    border-left-color: var(--port-success);
}

.member-card.pro {
    border-left-color: var(--port-accent);
}

/* Meeting Status Styles */
.meeting-status.scheduled {
    background-color: #dbeafe;
    color: var(--port-primary);
}

.meeting-status.completed {
    background-color: #dcfce7;
    color: var(--port-success);
}

.meeting-status.cancelled {
    background-color: #fee2e2;
    color: var(--port-danger);
}

/* Task Priority Styles */
.priority-high {
    border-left: 4px solid var(--port-danger);
}

.priority-medium {
    border-left: 4px solid var(--port-accent);
}

.priority-low {
    border-left: 4px solid var(--port-success);
}

/* Document Type Icons */
.doc-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.doc-pdf { color: var(--port-danger); }
.doc-word { color: var(--port-primary); }
.doc-excel { color: var(--port-success); }
.doc-image { color: var(--port-accent); }

/* Login Page Specific Styles */
.login-container {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    border: none;
}

.login-header {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 2rem;
    text-align: center;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Dashboard Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.welcome-section h1 {
    color: var(--port-accent-light);
    font-weight: bold;
}

/* Stats Cards Enhanced */
.stats-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(30, 58, 138, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.2);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.stats-icon.primary { background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%); }
.stats-icon.success { background: linear-gradient(135deg, var(--port-success) 0%, #047857 100%); }
.stats-icon.warning { background: linear-gradient(135deg, var(--port-accent) 0%, var(--port-accent-dark) 100%); }
.stats-icon.info { background: linear-gradient(135deg, var(--port-info) 0%, #0e7490 100%); }

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .timeline-content {
        margin-left: 10px;
    }
    
    .card-body {
        padding: 1rem 0.75rem;
    }
    
    .login-card {
        margin: 1rem;
    }
}

/* Loading Animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid var(--port-primary);
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Port Theme Classes */
.port-theme-primary {
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%) !important;
    color: white !important;
}

.port-theme-secondary {
    background-color: var(--port-secondary) !important;
    color: white !important;
}

.port-theme-accent {
    background: linear-gradient(135deg, var(--port-accent) 0%, var(--port-accent-dark) 100%) !important;
    color: white !important;
}

.text-port-primary {
    color: var(--port-primary) !important;
}

.text-port-accent {
    color: var(--port-accent) !important;
}

/* ID Card Preview Styles - Updated Vadhavan Port Union */
.id-card-preview {
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, #f8f4e6 0%, #ffffff 100%);
    border: 3px solid var(--port-accent);
    border-radius: 12px;
    color: var(--port-dark);
    padding: 15px;
    position: relative;
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.id-card-header {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--port-primary);
}

.id-card-photo {
    width: 80px;
    height: 90px;
    border-radius: 8px;
    background-color: #e8f4f8;
    border: 2px solid var(--port-primary);
    margin-right: 15px;
}

/* Union Branding Colors - Updated */
.vadhavan-orange {
    color: var(--port-accent);
}

.vadhavan-blue {
    color: var(--port-primary);
}

.vadhavan-bg-orange {
    background-color: var(--port-accent);
}

.vadhavan-bg-blue {
    background-color: var(--port-primary);
}

/* Session Indicator */
.session-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--port-primary) 0%, var(--port-secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
    z-index: 1000;
    font-size: 0.8rem;
}

/* File Upload Styles */
.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.upload-area:hover {
    border-color: var(--port-primary);
    background-color: var(--port-bg-accent);
}

.upload-area.dragover {
    border-color: var(--port-accent);
    background-color: var(--port-bg-accent);
    transform: scale(1.02);
}

.upload-content {
    pointer-events: none;
}

.upload-area i {
    color: var(--port-primary);
    transition: color 0.3s ease;
}

.upload-area:hover i {
    color: var(--port-accent);
}

/* Photo Preview Styles */
#photoPreview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#previewImage {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Member Table Enhancements */
.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.member-avatar.normal {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.member-avatar.premium {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.member-avatar.pro {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

/* Status Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

/* Mobile Form Styles */
.form-control {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.form-control:focus {
    border-color: var(--port-primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--port-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group {
    margin-bottom: 1rem;
}

/* Mobile Utility Classes */
.mobile-hidden {
    display: none !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .container-fluid {
        padding: 0.5rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .welcome-section {
        padding: 1rem;
        text-align: center;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-actions .btn {
        margin-bottom: 0.5rem;
    }
    
    .form-control {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding: 0.25rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .table-responsive {
        font-size: 0.7rem;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .stats-card {
        padding: 1rem;
    }
    
    .welcome-section {
        padding: 0.75rem;
    }
    
    .welcome-section h1 {
        font-size: 1.25rem;
    }
    
    .timeline {
        padding-left: 15px;
    }
    
    .timeline-marker {
        left: -12px;
        width: 15px;
        height: 15px;
    }
    
    .timeline-content {
        margin-left: 15px;
        padding: 0.75rem;
    }
    
    .form-control {
        padding: 0.75rem 0.5rem;
        font-size: 1rem; /* Prevent zoom on iOS */
        border-radius: 0.5rem;
    }
    
    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    /* Full-width forms on mobile */
    .form-mobile-full .form-control {
        width: 100%;
    }
    
    /* Stack form elements vertically */
    .form-mobile-stack {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-mobile-stack .form-group {
        margin-bottom: 0;
    }
}

/* Worker Type Badges */
.worker-type-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Print Styles */
@media print {
    .navbar, .btn, .timeline-marker, .session-indicator {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .card-header {
        background: var(--port-primary) !important;
        color: white !important;
    }
} 