:root {
    --bg-color: #e2e8f0;
    /* Calming matte medium slate-grey background */
    --text-primary: #0f172a;
    /* Slate-900 */
    --text-secondary: #475569;
    /* Slate-600 */
    --accent-color: #2563eb;
    /* Blue-600 */
    --accent-hover: #1d4ed8;
    --panel-bg: rgba(248, 250, 252, 0.85);
    /* Soft light grey/off-white panel background */
    --border-color: rgba(100, 116, 139, 0.25);
    /* Medium-light slate border */
    --hover-bg: rgba(71, 85, 105, 0.08);
    /* Soft grey hover overlay */

    --tabs-nav-bg: rgba(71, 85, 105, 0.12);
    --input-bg: rgba(248, 250, 252, 0.95);
    --dropdown-option-bg: #f8fafc;
    --input-focus-bg: #f1f5f9;
    --th-bg: #cbd5e1;
    /* Slate-300 */
    --card-bg: var(--panel-bg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 0.9rem;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.06), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.06), transparent 25%);
    background-size: cover;
    background-attachment: fixed;
}

.app-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0.8rem 1.5rem;
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(to right, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.1rem;
}

.header-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.add-flight-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.upload-csv-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.add-flight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.upload-csv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.table-container {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1350px;
}

th,
td {
    padding: 0.6rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    white-space: normal;
    word-wrap: break-word;
    max-width: 220px;
}

th:first-child,
td:first-child {
    white-space: nowrap;
    width: auto;
}

th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: sticky;
    top: 0;
    background: var(--th-bg, #cbd5e1);
    backdrop-filter: blur(8px);
    z-index: 10;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: var(--hover-bg);
}

tbody tr:last-child td {
    border-bottom: none;
}

.font-medium {
    font-weight: 600;
    color: var(--text-primary);
}

.airport-badge {
    background: var(--hover-bg);
    padding: 0.25rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    display: inline-block;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Flight Class Colors */
.class-economy {
    background: rgba(13, 148, 136, 0.12);
    color: #0f766e;
    border: 1px solid rgba(13, 148, 136, 0.25);
}

.class-economy-plus {
    background: rgba(5, 150, 105, 0.12);
    color: #065f46;
    border: 1px solid rgba(5, 150, 105, 0.25);
}

.class-business {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.class-first {
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.class-private {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Seat Type Colors */
.seat-window {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.seat-middle,
.seat-other {
    background: rgba(112, 77, 120, 0.08);
    color: #6b37b4;
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.seat-aisle {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Flight Reason Colors */
.reason-leisure {
    background: rgba(236, 72, 153, 0.1);
    color: #be185d;
    border: 1px solid rgba(236, 72, 153, 0.15);
}

.reason-business {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.reason-crew {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.reason-other {
    background: rgba(71, 85, 105, 0.08);
    color: #475569;
    border: 1px solid rgba(71, 85, 105, 0.15);
}

/* Fallback for N/A or Error */
.badge[class*="-n/a"],
.badge[class*="-error"] {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.truncate {
    max-width: 250px;
    white-space: normal;
    word-wrap: break-word;
}

.action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    margin-right: 0.5rem;
}

.action-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Form Styles */
.form-container {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--input-bg, rgba(255, 255, 255, 0.9));
    border: 1px solid var(--border-color, rgba(148, 163, 184, 0.3));
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group select option {
    background: var(--dropdown-option-bg, #ffffff);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    background: var(--input-focus-bg, #ffffff);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

/* Specific styling for the type=time input dropdown indicator to be visible in dark mode */
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.form-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Make textarea take full width in grid */
.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.cancel-btn,
.cancel-header-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-header-btn {
    box-shadow: none;
    background: transparent;
}

.cancel-btn:hover,
.cancel-header-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* Pagination Styles */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-controls .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.pagination-controls .action-btn:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.5);
    color: #60a5fa;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
}

.pagination-controls .action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

#pageIndicator {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* User Selection Dropdown */
.user-select {
    background: var(--input-bg, rgba(255, 255, 255, 0.9));
    border: 1px solid var(--border-color, rgba(148, 163, 184, 0.25));
    color: var(--text-primary);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}

.user-select:hover:not(:disabled) {
    border-color: rgba(96, 165, 250, 0.5);
    background: var(--hover-bg, rgba(37, 99, 235, 0.06));
}

.user-select:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.25);
}

.user-select option {
    background: var(--dropdown-option-bg, #ffffff);
    color: var(--text-primary);
}

.user-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Dashboard Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.stat-card {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.8rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-section {
    background: var(--tabs-nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0.7rem;
}

.search-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-input-group {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--input-focus-bg);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.highlight {
    background: rgba(59, 130, 246, 0.4);
    color: white;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 600;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: var(--tabs-nav-bg, rgba(148, 163, 184, 0.12));
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: fit-content;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: white;
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Tab Panes */
.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Analytics Cards */
.analytics-card {
    background: rgba(71, 85, 105, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.analytics-card h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.analytics-card td {
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
}

/* Flight Cards Styling */
.flight-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.flight-card {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.flight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(96, 165, 250, 0.4);
}

.flight-card-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

.fc-flight-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.fc-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.fc-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.fc-airport {
    font-size: 1.05rem;
    font-weight: 700;
    color: #60a5fa;
}

.fc-plane-icon {
    color: var(--text-secondary);
    opacity: 0.5;
}

.fc-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.fc-meta span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:not(:disabled):hover {
    background: var(--hover-bg);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#print-cards-btn {
    background: rgba(16, 185, 129, 0.12);
    border-color: #047857;
    color: #047857;
}

#print-cards-btn:not(:disabled):hover {
    background: rgba(16, 185, 129, 0.22);
    border-color: #047857;
    color: #047857;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.8);
}

/* Print Styles */
@media print {

    header,
    .stats-grid,
    .tabs-nav,
    .search-section,
    .pagination-controls,
    #print-cards-btn,
    .modal-overlay,
    body.print-mode .analytics-card>div:first-child {
        display: none !important;
    }

    .app-container,
    .main-content,
    main {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* If they aren't on the flight cards tab, we shouldn't really be printing the flight cards, 
       but if they triggered it, we force show them */
    body.print-mode .tab-pane {
        display: none !important;
    }

    body.print-mode #tab-flight-cards {
        display: block !important;
    }

    body.print-mode .analytics-card {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .flight-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        /* Force 2 columns on print to save paper */
        gap: 20px !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .flight-card {
        page-break-inside: avoid;
        break-inside: avoid;
        border: 1px solid #475569 !important;
        background: white !important;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* Custom Vessel Type Badges for Ferry Dashboard */
.badge-vessel-passenger-ferry {
    background: rgba(6, 182, 212, 0.15) !important;
    color: #0891b2 !important;
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
}

.badge-vessel-speedboat-ferry {
    background: rgba(244, 63, 94, 0.15) !important;
    color: #e11d48 !important;
    border: 1px solid rgba(244, 63, 94, 0.25) !important;
}

.badge-vessel-generic {
    background: rgba(148, 163, 184, 0.15) !important;
    color: #475569 !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
}