/* ============================================
   GESTION-EQUIPO.CSS
   Estilos específicos para la página de gestión de equipo
   (Base styles in basestyles.css)
   ============================================ */

/* Active navigation link highlight */
.nav-link.active {
    color: var(--color-primary);
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.mobile-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
}

/* ============================================
   LOGIN REDIRECT SECTION
   ============================================ */
.login-section {
    padding: var(--space-3xl) 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-redirect {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
}

.redirect-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}

.redirect-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.redirect-text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

/* ============================================
   GESTION SECTION
   ============================================ */
.gestion-section {
    padding: var(--space-3xl) 0;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.page-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    margin-bottom: var(--space-lg);
}

.page-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.title-line {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.title-highlight {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-text), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Category Badge Styles */
.team-category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.team-category-badge.f1-badge {
    background: linear-gradient(135deg, #e10600 0%, #c10500 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(225, 6, 0, 0.3);
}

.team-category-badge.f2-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.team-category-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ============================================
   TEAM STATS
   ============================================ */
.team-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .team-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-stats {
        grid-template-columns: repeat(5, 1fr);
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.stat-budget .stat-icon {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--color-success);
}

.stat-factory .stat-icon {
    background: rgba(255, 170, 0, 0.1);
    border-color: rgba(255, 170, 0, 0.3);
    color: var(--color-warning);
}

.stat-improvement .stat-icon {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--color-primary);
}

.stat-championship .stat-icon {
    background: rgba(255, 45, 85, 0.1);
    border-color: rgba(255, 45, 85, 0.3);
    color: var(--color-secondary);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   BUDGET SECTION
   ============================================ */
.budget-section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.section-header-inline {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.section-icon-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    color: var(--color-success);
}

.section-title-inline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Budget Cards */
.budget-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .budget-cards {
        flex-direction: column;
        width: 100%;
    }
    
    .budget-cards .budget-card {
        width: 100%;
        max-width: 400px;
    }
}

.budget-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.budget-total {
    border-color: rgba(0, 212, 255, 0.3);
}

.budget-spent {
    border-color: rgba(255, 45, 85, 0.3);
}

.budget-available {
    border-color: rgba(0, 255, 136, 0.3);
}

.budget-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.budget-total .budget-icon {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-primary);
}

.budget-spent .budget-icon {
    background: rgba(255, 45, 85, 0.1);
    color: var(--color-secondary);
}

.budget-available .budget-icon {
    background: rgba(0, 255, 136, 0.1);
    color: var(--color-success);
}

.budget-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.budget-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.budget-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Transactions Panel */
.transactions-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: var(--space-lg);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.history-header h3,
.transactions-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.transaction-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.transaction-summary {
    margin-top: var(--space-md);
}

.summary-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.summary-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.summary-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.summary-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    color: var(--color-primary);
}

.summary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.summary-count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.summary-arrow {
    transition: transform 0.3s ease;
}

.summary-arrow.expanded {
    transform: rotate(180deg);
}

.transactions-list {
    max-height: 250px;
    overflow-y: auto;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.empty-state-small,
.no-transactions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    color: var(--color-text-muted);
    text-align: center;
}

.no-transactions {
    padding: var(--space-lg);
}

.empty-state-small svg {
    opacity: 0.4;
}

.empty-state-small p {
    font-size: 0.9rem;
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */
.nav-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    width: 100%;
}

@media (max-width: 767px) {
    .nav-buttons {
        grid-template-columns: 1fr;
    }
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 180px;
}

.nav-button:hover {
    transform: translateY(-4px);
}

.nav-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.nav-fichajes .nav-button-icon {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--color-primary);
}

.nav-fichajes:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.nav-fichajes:hover .nav-button-icon {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--color-primary);
}

.nav-fabrica .nav-button-icon {
    background: rgba(255, 170, 0, 0.1);
    border: 2px solid rgba(255, 170, 0, 0.3);
    color: var(--color-warning);
}

.nav-fabrica:hover {
    border-color: var(--color-warning);
    box-shadow: 0 10px 40px rgba(255, 170, 0, 0.2);
}

.nav-fabrica:hover .nav-button-icon {
    background: rgba(255, 170, 0, 0.2);
    border-color: var(--color-warning);
}

.nav-mejoras .nav-button-icon {
    background: rgba(255, 45, 85, 0.1);
    border: 2px solid rgba(255, 45, 85, 0.3);
    color: var(--color-secondary);
}

.nav-mejoras:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 40px rgba(255, 45, 85, 0.2);
}

.nav-mejoras:hover .nav-button-icon {
    background: rgba(255, 45, 85, 0.2);
    border-color: var(--color-secondary);
}

.nav-button-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   GESTION GRID
   ============================================ */
.gestion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1023px) {
    .gestion-grid {
        grid-template-columns: 1fr;
    }
}

.gestion-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gestion-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.gestion-card .card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-border);
}

.gestion-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.gestion-card .card-icon.pilots {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--color-primary);
}

.gestion-card .card-icon.offers {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    color: var(--color-warning);
}

.gestion-card .card-icon.engineers {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--color-success);
}

.gestion-card .card-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.pilots-list,
.offers-list,
.engineers-list {
    padding: var(--space-lg);
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

/* Loading State */
.loading-state-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    color: var(--color-text-muted);
}

.loading-spinner-small {
    width: 32px;
    height: 32px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pilot/Engineer Items */
.pilot-item,
.engineer-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
}

.pilot-item:hover,
.engineer-item:hover {
    background: rgba(0, 212, 255, 0.1);
}

.pilot-avatar,
.engineer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.pilot-info,
.engineer-info {
    flex: 1;
}

.pilot-name-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pilot-avatar-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.pilot-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pilot-name,
.engineer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.pilot-role,
.engineer-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Offer Items */
.offer-item {
    padding: var(--space-md);
    background: rgba(255, 170, 0, 0.05);
    border: 1px solid rgba(255, 170, 0, 0.2);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.offer-from {
    font-weight: 600;
    color: var(--color-text);
}

.offer-amount {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-success);
}

.offer-actions {
    display: flex;
    gap: var(--space-sm);
}

.btn-accept,
.btn-reject {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--color-success);
    color: var(--color-bg);
    border: none;
}

.btn-accept:hover {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

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

.btn-reject:hover {
    background: rgba(255, 45, 85, 0.1);
}

/* Transaction Items */
.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.transaction-concept {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

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

.transaction-amount {
    font-family: var(--font-display);
    font-weight: 700;
}

.transaction-amount.positive {
    color: var(--color-success);
}

.transaction-amount.negative {
    color: var(--color-error);
}

/* ============================================
   PILOT BLOCKED SECTION
   ============================================ */
.pilot-blocked-section {
    padding: var(--space-3xl) 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.blocked-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blocked-icon-wrapper {
    margin-bottom: var(--space-2xl);
}

.blocked-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 45, 85, 0.1);
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    color: var(--color-secondary);
    margin: 0 auto;
    position: relative;
}

.blocked-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.blocked-header {
    margin-bottom: var(--space-xl);
}

.blocked-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    background: rgba(255, 45, 85, 0.1);
    border: 1px solid rgba(255, 45, 85, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.blocked-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.blocked-title .title-line {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.blocked-title .title-highlight {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
}

.blocked-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

.blocked-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 170, 0, 0.05);
    border: 1px solid rgba(255, 170, 0, 0.2);
    border-radius: 12px;
    margin-bottom: var(--space-2xl);
    text-align: left;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 10px;
    color: var(--color-warning);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.blocked-actions {
    display: flex;
    justify-content: center;
}

.blocked-actions .btn-logout {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .title-highlight {
        font-size: 2rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-content {
        align-items: center;
    }

    .blocked-content {
        padding: var(--space-xl);
    }

    .blocked-icon {
        width: 100px;
        height: 100px;
    }

    .blocked-title .title-highlight {
        font-size: 2rem;
    }

    .blocked-info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }
}
