/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Cores baseadas em Cobalt Blue #0047AB */
    --primary-color: #0a4db9;
    --primary-dark: #003da1;
    --primary-light: #9fc4fb;
    --primary-gradient: linear-gradient(135deg, #003997 0%, #0051bb 100%);
    --primary-live: red;
    
    /* Glassmorfismo com tons de azul */
    --glass-bg-white: white;
    --glass-bg-light: rgba(10, 77, 185, 0.1);
    --glass-bg-medium: rgba(10, 77, 185, 0.15);
    --glass-bg-dark: rgba(10, 77, 185, 0.25);
    --glass-border: rgba(0, 61, 161, 0.3);
    
    /* Cores de texto */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #f8f9fa;
    --text-blue-light: #68a3fa;
    --text-blue-clean: #9cc4ff;
    
    /* Sombras com azul escuro */
    --shadow-light: 0 4px 6px rgba(0, 61, 161, 0.15);
    --shadow-medium: 0 8px 25px rgba(0, 61, 161, 0.2);
    --shadow-heavy: 0 15px 35px rgba(0, 61, 161, 0.25);
    
    /* Bordas */
    --border-radius: 20px;
    --border-radius-small: 10px;
    --border-radius-large: 30px;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* ===== HEADER SECTION ===== */
.header-section {
    background: var(--primary-gradient);
    padding: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23003997"/><stop offset="100%" style="stop-color:%230051bb"/></linearGradient></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.site-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== NAVIGATION ===== */
.navbar-section {
    background-color: var(--primary-dark) !important;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: var(--shadow-light);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.px-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: #dce6f5;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    overflow: hidden;
}

.glass-card-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

.glass-card-live {
    background: var(--glass-bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    overflow: hidden;
}

.mission-highlight {
    background: #003785;
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
}

/* ===== CAROUSEL ===== */
.carousel {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}

.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding: 0;
}

.carousel-caption .text-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    margin-bottom: 15px;
}

.carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-carousel {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-large);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-light);
}

.btn-carousel:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== CARDS CONTENT ===== */
.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card-icon-live {
    font-size: 3rem;
    color: var(--primary-live);
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

/* ===== TABLES ===== */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background: white;
}

.table th,
.table td {
    border-top: 1px solid #dee2e6;
    padding: 1rem;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: rgba(10, 77, 185, 0.05);
}

.table-responsive {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* ===== ALERTS E CITAÇÕES ===== */
.alert {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.alert-info {
    background-color: #f8f9fa;
    color: var(--text-primary);
    border-left: 4px solid var(--primary-color);
}

.alert-info .fw-bold {
    color: var(--text-primary) !important;
}

.text-blue-light {
    color: var(--text-blue-light) !important;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--glass-bg-light);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* ===== WEB RÁDIO ===== */


.player-container {
    position: relative;
    width: 100%;
    height: 80px;
    margin: 1.5rem 0;
    background-color: #f1f3f5;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

.play-btn:hover {
    background-color: #0b5ed7;
    transform: scale(1.05);
}

.play-btn.hidden {
    display: none;
}

#nowPlaying {
    min-height: 24px;
    font-size: 1.1rem;
}

.status-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
}

#refreshBtn {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0d6efd;
}

#refreshBtn.updating {
    animation: spin 1s linear infinite;
}

#refreshBtn.success {
    color: #28a745;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#statusMessage {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-align: center;
    height: 20px;
    transition: opacity 0.3s ease;
}

.fade-out {
    opacity: 0;
}

.card-full-width {
    max-width: none !important;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.footer-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== BOTÕES FLUTUANTES ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== IMAGEM COM TEXTO CONTORNANDO ===== */
.text-wrap-image {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .site-subtitle {
        font-size: 1rem;
    }
    
    .carousel-item {
        height: 400px !important;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        width: 95%;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .carousel-caption h5 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .text-wrap-image {
        float: none;
        display: block;
        margin: 0 auto 1rem auto;
        max-width: 100%;
    }
    
    .px-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .header-section {
        padding: 1.5rem 0;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        height: 300px !important;
    }
    
    .carousel-caption {
        display: block !important;
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        transform: none;
        padding: 0;
    }
    
    .carousel-caption .text-content {
        background: rgba(0, 0, 0, 0.8);
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 0;
        display: block;
    }
    
    .btn-carousel {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
}

/* ===== UTILITÁRIOS ===== */
.hidden {
    display: none !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}



.card {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: none;
}
.card-header {
    background-color: #0d6efd;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 12px 12px 0 0 !important;
    padding: 1rem 1.5rem;
}
.card-body {
    padding: 2rem;
}
.player-container {
    position: relative;
    width: 100%;
    height: 80px;
    margin: 1.5rem 0;
    background-color: #f1f3f5;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.play-btn:hover {
    background-color: #0b5ed7;
    transform: scale(1.05);
}
.play-btn.hidden {
    display: none;
}
#nowPlaying {
    min-height: 24px;
    font-size: 1.1rem;
}
.status-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
}
#refreshBtn {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0d6efd;
}
#refreshBtn.updating {
    animation: spin 1s linear infinite;
}
#refreshBtn.success {
    color: #28a745;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#statusMessage {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-align: center;
    height: 20px;
    transition: opacity 0.3s ease;
}
.hidden {
    display: none !important;
}
.fade-out {
    opacity: 0;
}

/* ===== MODAL PLAYER AO VIVO ===== */
.floating-player-modal .modal-content {
    background-color: transparent;
    border: none;
}
.floating-player-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.floating-player-container iframe,
.floating-player-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.floating-player-modal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* ===== MODAL DE COMUNICADOS (ESTILO FINAL AJUSTADO) ===== */
#comunicadosModal .modal-content {
background-color: transparent; /* Permite que o header e o body definam seus próprios fundos */
border: none; /* Remove bordas padrão do Bootstrap */
border-radius: var(--border-radius); /* Aplica as bordas arredondadas dos seus cards (20px) */
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Sombra para destaque */
overflow: hidden; /* Essencial para que o border-radius funcione corretamente */
}

#comunicadosModal .modal-header {
background: var(--primary-gradient); /* O degradê do seu tema no cabeçalho */
color: var(--text-light); /* Cor do texto no cabeçalho (branco/claro) */
border-top-left-radius: var(--border-radius); /* Arredonda os cantos superiores */
border-top-right-radius: var(--border-radius);
border-bottom: none; /* Remove a borda inferior padrão */
padding: 1.5rem; /* Padding uniforme para melhor alinhamento */
display: flex; /* Usa flexbox para alinhamento do título e botão */
justify-content: space-between; /* Espaça o título e o botão */
align-items: center; /* Centraliza verticalmente o título e o botão */
}

#comunicadosModal .modal-title {
color: var(--text-light); /* Garante que o título seja branco */
font-size: 1.8rem;
font-weight: 700;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
margin-bottom: 0; /* Remove margem inferior para melhor alinhamento no flexbox */
}

#comunicadosModal .modal-body {
background-color: white; /* Fundo branco para o corpo do modal */
color: var(--text-primary); /* **CORRIGIDO**: Cor do texto para contraste no fundo branco */
padding: 1.5rem; /* Padding uniforme para o conteúdo */
font-size: 1.1rem;
line-height: 1.6;
overflow-y: auto; /* Permite rolagem se o conteúdo for longo */
}

#comunicadosModal .modal-footer {
background-color: white; /* Fundo branco para o rodapé do modal */
border-bottom-left-radius: var(--border-radius); /* Arredonda os cantos inferiores */
border-bottom-right-radius: var(--border-radius);
border-top: none; /* Remove a borda superior padrão */
padding: 1rem 1.5rem; /* Padding para o rodapé */
}

.btn-close-white {
filter: invert(1) grayscale(100%) brightness(200%); /* Mantém o ícone de fechar branco */
/* Opcional: ajustar tamanho ou posição se necessário */
font-size: 1.5rem; /* Um pouco maior para facilitar o clique */
}

/* Estilo para a linha divisória (hr) dentro do modal body */
#comunicadosModal .modal-body hr {
border-color: rgba(0, 0, 0, 0.2); /* Linha divisória mais escura para contraste no fundo branco */
margin: 1rem 0;
}

/* Pequenos textos de observação */
#comunicadosModal .modal-body .small {
font-size: 0.85rem;
opacity: 0.7; /* Sutilmente mais claro para leitura */
color: var(--text-secondary); /* Cor secundária para textos pequenos */
}








/* ===== MODAIS REDESIGNADOS (PADRÃO WEBRADIO) ===== */

/* Modal de Transmissão */
.modal-webradio-style .modal-content {
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.modal-webradio-style .modal-header {
    background-color: #0d6efd;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 0;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.modal-webradio-style .modal-body {
    background-color: white;
    padding: 2rem;
}

.modal-webradio-style .modal-footer {
    background-color: white;
    border-top: none;
    padding: 1rem 2rem 2rem 2rem;
}

.modal-webradio-style .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-webradio-style .btn-close:hover {
    opacity: 1;
}

/* Modal de Comunicados */
.modal-comunicado-style .modal-content {
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.modal-comunicado-style .modal-header {
    background-color: #0d6efd;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 0;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

.modal-comunicado-style .modal-body {
    background-color: white;
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-comunicado-style .modal-footer {
    background-color: white;
    border-top: none;
    padding: 1rem 2rem 2rem 2rem;
    justify-content: center;
}

.modal-comunicado-style .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-comunicado-style .btn-close:hover {
    opacity: 1;
}

/* Botão personalizado para modais */
.btn-modal-webradio {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-modal-webradio:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-modal-webradio:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    color: white;
}

