/* Design Tokens & Theme Setup */
:root {
    --bg-gradient: linear-gradient(135deg, #090d16 0%, #111827 50%, #0c0f1d 100%);
    --panel-bg: rgba(17, 24, 39, 0.7);
    --panel-border: rgba(255, 255, 255, 0.08);
    --panel-hover-border: rgba(255, 255, 255, 0.15);
    
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --primary-glow: rgba(99, 102, 241, 0.35);
    
    --egypt-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --egypt-glow: rgba(217, 119, 6, 0.25);
    
    --spain-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    --spain-glow: rgba(185, 28, 28, 0.25);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.2);
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: 75px; /* Navbar spacer */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Glassmorphism Class Helper */
.glass-card {
    background: var(--panel-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--panel-border);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.brand-icon {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.brand-year {
    color: #6366f1;
    font-weight: 400;
}

/* Navbar Search System */
.nav-search-container {
    position: relative;
    flex-grow: 1;
    max-width: 480px;
}

.nav-search-box {
    position: relative;
    width: 100%;
}

.nav-search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    padding: 0.6rem 2.2rem 0.6rem 2.4rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-smooth);
}

.nav-search-box input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #6366f1;
    box-shadow: 0 0 15px var(--primary-glow);
}

.search-bar-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-clear-btn {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.search-clear-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Global Search Suggestions Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    max-height: 380px;
    overflow-y: auto;
    background: rgba(10, 15, 30, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 1100;
    display: none;
    flex-direction: column;
}

.search-results-dropdown.active {
    display: flex;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 4px;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.search-group-header {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #818cf8;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.search-result-item:hover {
    background: rgba(99, 102, 241, 0.08);
}

.search-result-item i {
    font-size: 0.95rem;
    color: var(--text-secondary);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.search-result-item.passenger-item i {
    color: #818cf8;
}
.search-result-item.activity-item i {
    color: #fbbf24;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-result-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-results-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.no-results-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

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

.nav-tab.active {
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Page Section Controls */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-section {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.page-header-desc {
    margin-bottom: 2rem;
}

.header-action-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.page-header-desc h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header-desc p {
    color: var(--text-secondary);
    max-width: 700px;
    font-size: 0.95rem;
}

/* Roster View Toggle Controller (Segmented Switch) */
.view-toggle-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    padding: 0.35rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

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

.toggle-btn.active {
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Roster sub-view sections */
.roster-view-section {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.roster-view-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Selections Layout Grid */
.selections-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.options-column {
    min-width: 0; /* Prevents overflow */
}

/* Passenger Profile Input Card */
.passenger-profile-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid var(--panel-border);
    color: var(--text-secondary);
}

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

.btn-danger-outline {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
    padding: 0.4rem 0.6rem;
}

.btn-danger-outline:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Card Header Demarcations */
.selection-card-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    border-left: 3px solid #6366f1;
    padding-left: 0.75rem;
}

/* Categories & Custom Checks Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.category-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.category-block-card {
    padding: 1.25rem;
    height: 100%;
}

.category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #818cf8;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

/* Styled Premium Checkbox Items */
.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    position: relative;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    user-select: none;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.checkbox-item.checked {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom Checkmark Design */
.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.checkbox-item:hover .checkmark {
    border-color: var(--text-secondary);
}

.checkbox-item input:checked ~ .checkmark {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.5);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-item input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-item .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.item-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

.item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #818cf8;
}

/* Excursion Accordions */
.accordions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    overflow: hidden;
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-title-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-icon-badge {
    height: 38px;
    width: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Category Specific Accents */
.egypt-accent .accordion-icon-badge {
    background: var(--egypt-gradient);
    box-shadow: 0 4px 10px var(--egypt-glow);
    color: #ffffff;
}
.egypt-accent .accordion-header-status {
    color: #fbbf24;
}

.spain-accent .accordion-icon-badge {
    background: var(--spain-gradient);
    box-shadow: 0 4px 10px var(--spain-glow);
    color: #ffffff;
}
.spain-accent .accordion-header-status {
    color: #ef4444;
}

.accordion-details {
    display: flex;
    flex-direction: column;
}

.accordion-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-header-status {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-chevron {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item.open .accordion-content {
    max-height: 1000px; /* High enough value to show contents */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-inner-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .accordion-inner-body {
        grid-template-columns: 1fr;
    }
}

.accordion-inner-body .checkbox-item {
    font-size: 0.85rem;
}

/* Sticky Summary Card */
.summary-sticky-card {
    position: sticky;
    top: 95px;
    padding: 1.5rem;
}

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

.summary-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.passenger-name-indicator {
    font-size: 0.8rem;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cost-gauge-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 1.5rem;
}

.cost-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.cost-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary-details-list {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-right: 0.25rem;
}

.summary-details-list::-webkit-scrollbar {
    width: 4px;
}
.summary-details-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.summary-item-name {
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.summary-item-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.empty-summary-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
    color: var(--text-muted);
    gap: 0.75rem;
    font-size: 0.85rem;
}

.empty-summary-placeholder i {
    font-size: 1.8rem;
}

/* Page 2: Roster Layout */
.search-filter-card {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.filter-chip:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
}

.filter-chip.active {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    font-weight: 600;
}

/* Roster Cards Grid */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.roster-card {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.roster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.roster-card:hover {
    transform: translateY(-4px);
    border-color: var(--panel-hover-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.roster-card:hover::before {
    opacity: 1;
}

.roster-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.roster-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-word;
}

.roster-card-cost {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #818cf8;
    flex-shrink: 0;
}

.roster-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.roster-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roster-card-meta-item i {
    width: 14px;
    color: #818cf8;
    font-size: 0.85rem;
}

.roster-card-meta-val {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.roster-card-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.badge-egypt1 { background: rgba(217, 119, 6, 0.15); color: #fbbf24; border: 1px solid rgba(217, 119, 6, 0.3); }
.badge-spain { background: rgba(185, 28, 28, 0.15); color: #f87171; border: 1px solid rgba(185, 28, 28, 0.3); }
.badge-egypt2 { background: rgba(124, 58, 237, 0.15); color: #c084fc; border: 1px solid rgba(124, 58, 237, 0.3); }

.roster-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}

.details-indicator {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.roster-card:hover .details-indicator {
    color: #a5b4fc;
}

.roster-card-actions {
    display: flex;
    gap: 0.5rem;
}

/* ==================== ACTIVITIES ROSTER STYLING ==================== */
.activities-roster-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-category-card {
    padding: 1.5rem;
}

.activity-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.activity-roster-card {
    padding: 1.25rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-roster-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.activity-roster-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.5rem;
}

.activity-roster-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
}

.activity-roster-count {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    background: rgba(99, 102, 241, 0.12);
    color: #a5b4fc;
    border-radius: 50px;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.activity-roster-card.has-participants .activity-roster-count {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

.activity-participant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 0.75rem;
}

.participant-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.participant-tag i {
    font-size: 0.65rem;
    color: #818cf8;
}

/* Scroll highlighting for global search match refocus */
.scroll-highlight {
    animation: pulse-glow 2s ease-out;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0px rgba(99, 102, 241, 0);
        border-color: rgba(99, 102, 241, 0.4);
        background: rgba(99, 102, 241, 0.1);
    }
    30% {
        box-shadow: 0 0 20px 2px rgba(99, 102, 241, 0.5);
        border-color: rgba(99, 102, 241, 0.8);
        background: rgba(99, 102, 241, 0.15);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(99, 102, 241, 0);
        border-color: rgba(255, 255, 255, 0.04);
        background: rgba(255, 255, 255, 0.02);
    }
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input[type="text"] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input[type="text"]:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-group select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-group select:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-group select option {
    background-color: #0b0f19;
    color: #ffffff;
}

/* Premium Drawer Slide-out from Right */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-content {
    width: 100%;
    max-width: 500px;
    height: 100%;
    border-radius: 0;
    border-left: 1px solid var(--panel-border);
    border-top: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-overlay.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-title-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.drawer-title-area .title-icon {
    font-size: 1.7rem;
    color: #6366f1;
    flex-shrink: 0;
}

.drawer-title-area h2 {
    font-size: 1.35rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drawer-subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: -0.1rem;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.drawer-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Profile details inside drawer */
.drawer-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.drawer-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.drawer-meta-item .meta-ico {
    font-size: 1.15rem;
    color: #818cf8;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.drawer-meta-item div {
    display: flex;
    flex-direction: column;
}

.drawer-meta-item .meta-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.drawer-meta-item .meta-val {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.drawer-cost-card {
    background: rgba(99, 102, 241, 0.07);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-cost-card .cost-label {
    margin-bottom: 0;
    color: #a5b4fc;
}

.drawer-cost-card .cost-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.drawer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drawer-section h4 {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #818cf8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-item-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-item-list li {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
}

.drawer-item-list li span:first-child {
    color: var(--text-primary);
}

.drawer-item-list li span:last-child {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #818cf8;
}

.drawer-day-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: -0.5rem;
}

.drawer-day-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.drawer-day-list::-webkit-scrollbar {
    width: 3px;
}
.drawer-day-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
}

.drawer-day-list li {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
    border-left: 2px solid #cbd5e1;
    color: var(--text-secondary);
}

.drawer-section.itinerary-segment {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}

/* Category segments colors */
#drawerEgypt1Segment { border-left: 3px solid #fbbf24; padding-left: 0.5rem; }
#drawerEgypt1Segment li { border-left-color: #fbbf24; }

#drawerSpainSegment { border-left: 3px solid #ef4444; padding-left: 0.5rem; }
#drawerSpainSegment li { border-left-color: #ef4444; }

#drawerEgypt2Segment { border-left: 3px solid #7c3aed; padding-left: 0.5rem; }
#drawerEgypt2Segment li { border-left-color: #7c3aed; }

.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    transform: translateY(50px);
    opacity: 0;
    animation: toast-in 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toast-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast.toast-success { border-left: 4px solid var(--success); }
.toast.toast-success i { color: var(--success); }

.toast.toast-error { border-left: 4px solid var(--danger); }
.toast.toast-error i { color: var(--danger); }

/* Results Visible Count Bar */
.results-count-bar {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 0.25rem;
}

/* Responsive Button text toggles */
.btn-text-mobile {
    display: none;
}
.btn-text-desktop {
    display: inline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .selections-layout {
        grid-template-columns: 1fr;
    }
    .summary-column {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 900;
        background: rgba(10, 15, 30, 0.95);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--panel-border);
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
        border-radius: 20px 20px 0 0;
    }
    .summary-sticky-card {
        position: static;
        padding: 1rem;
        background: transparent;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
    }
    .summary-header, .summary-details-list {
        display: none;
    }
    .cost-gauge-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        margin-bottom: 0.75rem;
        text-align: left;
    }
    .cost-amount {
        font-size: 1.5rem;
    }
    body {
        padding-bottom: 180px; /* Spacer for bottom bar */
    }
    .search-filter-card {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    /* Fixed Navigation Bar on mobile/tablet */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 125px;
        background: rgba(10, 15, 30, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--panel-border);
        z-index: 1000;
        padding: 0;
    }
    .nav-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        height: auto;
    }
    .nav-brand {
        order: 1;
        flex: 0 1 auto;
    }
    .nav-user {
        order: 2;
        flex: 0 1 auto;
        gap: 0;
    }
    .nav-user .user-badge span {
        display: none; /* Hide Coordinator text on tablet/mobile */
    }
    .nav-user .user-badge {
        padding: 0.5rem;
        border-radius: 50%;
        height: 38px;
        width: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-search-container {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
        margin: 0;
    }
    .search-results-dropdown {
        max-height: 250px;
    }
    .nav-menu {
        order: 4;
        flex: 1 1 100%;
        margin: 0;
        display: flex;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--panel-border);
        border-radius: var(--radius-md);
        padding: 0.2rem;
        gap: 0.25rem;
    }
    .nav-tab {
        flex: 1;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }
    
    body {
        padding-top: 145px; /* Adjust top spacing for mobile navbar */
    }
    
    /* Horizontal scrollable filter chips container */
    .filter-chips {
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: 0.25rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .filter-chips::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .filter-chip {
        flex-shrink: 0;
    }
    
    /* Bottom sticky bar improvements */
    body {
        padding-bottom: 120px !important; /* Shorter body padding for compact bottom bar */
    }
    .summary-column {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .summary-actions {
        display: flex;
        flex-direction: row !important;
        gap: 0.5rem;
    }
    .summary-actions .btn {
        margin-top: 0 !important;
        flex: 1;
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .summary-actions #saveRosterBtn {
        flex: 1.5;
    }
    .btn-text-desktop {
        display: none !important;
    }
    .btn-text-mobile {
        display: inline !important;
    }
    
    /* Form inputs and selectors font-size 16px to prevent iOS Safari auto-zoom */
    .form-group input[type="text"], 
    .form-group select {
        font-size: 16px !important;
    }
    
    /* Drawer padding adjustments for mobile */
    .drawer-content {
        max-width: 100vw;
    }
    .drawer-header {
        padding: 1rem;
    }
    .drawer-body {
        padding: 1rem;
        gap: 1rem;
    }
    .drawer-footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1rem 0.75rem;
    }
    .page-header-desc h1 {
        font-size: 1.6rem;
    }
    .page-header-desc p {
        font-size: 0.85rem;
    }
    .header-action-block {
        gap: 1rem;
    }
    .header-action-block .btn-lg {
        width: 100%;
    }
    
    /* Grids to single column */
    .roster-grid, 
    .grid-container, 
    .activity-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .roster-card {
        padding: 1rem;
    }
    .category-block-card {
        padding: 1rem;
    }
    
    /* Accordion header adjustment */
    .accordion-header {
        padding: 1rem;
    }
    .accordion-icon-badge {
        height: 32px;
        width: 32px;
        font-size: 0.95rem;
    }
    .accordion-name {
        font-size: 0.95rem;
    }
    .accordion-inner-body {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    /* Modal styles */
    .modal-content {
        width: 95%;
        padding: 1rem;
        max-height: 90vh;
    }
    .modal-header {
        padding-bottom: 0.75rem;
        margin-bottom: 1rem;
    }
    .modal-title-area h2 {
        font-size: 1.25rem;
    }
    .participant-table th, 
    .participant-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.78rem;
    }
    .participant-count-indicator {
        font-size: 0.82rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 1rem;
    }
}

/* Status Tags & Badges */
.status-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.status-draft {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #f59e0b;
}

.status-submitted {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.draft-badge {
    background: #f59e0b;
    color: #0b0f19;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 10px;
    margin-left: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Modal Overlay & Card Details Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(5, 8, 20, 0.65);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    padding: 2rem;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.modal-title-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-title-icon {
    font-size: 1.75rem;
    color: #fbbf24;
}

.modal-title-area h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.modal-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.participant-count-indicator {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.participant-count-indicator i {
    color: #818cf8;
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 15, 30, 0.3);
}

.participant-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}

.participant-table th, 
.participant-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.participant-table th {
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #a5b4fc;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.participant-table tr:last-child td {
    border-bottom: none;
}

.participant-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.participant-link {
    color: #818cf8;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.participant-link:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.participant-phone, 
.participant-passport, 
.participant-egy-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

