body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 40px;
    min-height: 100vh;
}

#container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-user {
    font-size: 0.9em;
    color: #6c757d;
    font-weight: 500;
}

.logout-btn {
    padding: 8px 16px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.2s;
    min-height: auto;
}

.logout-btn:hover {
    background: #c82333;
}

.api-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.api-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.api-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.api-card.disabled {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
    cursor: not-allowed;
}

.api-card.disabled:hover {
    transform: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.api-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.api-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.api-description {
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    #container {
        padding: 20px;
    }

    .api-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .api-card {
        padding: 20px;
    }
}

#container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.nav-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    text-decoration: none;
    color: #333;
}
.nav-tab:hover {
    background-color: #f0f0f0;
}
.nav-tab.active {
    background-color: #007bff;
    color: white;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0;
}
.service-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
.error-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    border-left: 4px solid #dc3545;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.domain-card, .apikey-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}
button:hover {
    background-color: #0056b3;
}
.btn-danger {
    background-color: #dc3545;
}
.btn-danger:hover {
    background-color: #c82333;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}
.btn-secondary {
    background-color: #6c757d;
}
.mail-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.mail-card.error {
    border-left-color: #dc3545;
}
.mail-card.cancelled {
    border-left-color: #6c757d;
}
.mail-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    background: #e8f5e9;
    color: #2e7d32;
    margin-left: 10px;
}
.mail-status.error {
    background: #ffebee;
    color: #c62828;
}
.mail-status.cancelled {
    background: #263238;
    color: #ffffff;
}
.mail-status.standby {
    background: #fff3e0;
    color: #e65100;
}
.mail-status.waiting {
    background: #e3f2fd;
    color: #1565c0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #container {
        width: 95%;
        padding: 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-tab {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
        min-width: 120px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-content {
        width: 95%;
        max-width: none;
        margin: 10px;
        padding: 15px;
    }

    .domain-card, .apikey-card, .error-card, .mail-card {
        padding: 15px;
    }

    /* Ajustement des cartes d'email pour mobile */
    .mail-card > div {
        flex-direction: column;
    }

    .mail-status {
        margin-top: 10px;
        align-self: flex-start;
    }

    /* Ajustement des boutons pour mobile */
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions button {
        width: 100%;
    }

    /* Ajustement du contenu des cartes */
    .domain-card button, 
    .apikey-card button {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    h3 {
        font-size: 1.1em;
    }

    .nav-tab {
        flex: 1 1 100%;
        padding: 8px 15px;
    }

    .modal-content {
        padding: 10px;
    }

    /* Ajustement des formulaires */
    .form-group input {
        font-size: 16px; /* Évite le zoom sur iOS */
    }
}

/* Améliorations générales */
* {
    box-sizing: border-box;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Pour iOS */
}

/* Style pour le bouton de fermeture */
.close-button {
    padding: 5px 10px;
    font-size: 20px;
    line-height: 1;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
}

.close-button:hover {
    color: #343a40;
    background: none;
}

/* Amélioration de l'accessibilité */
button, a {
    min-height: 44px; /* Pour la facilité de clic sur mobile */
}

/* Amélioration des transitions */
.modal {
    transition: opacity 0.3s ease;
}

.modal-content {
    transition: transform 0.3s ease;
    transform: scale(0.95);
}

.modal.show .modal-content {
    transform: scale(1);
}

/* Optimisation des performances */
.service-block, .domain-card, .apikey-card, .error-card, .mail-card {
    will-change: transform;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 10px 0;
    font-size: 0.9em;
}

.details-grid p {
    margin: 0;
    padding: 5px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.list-view {
    max-width: 1000px;
    margin: 0 auto;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #007bff;
}

.list-item.error {
    border-left-color: #dc3545;
}

.list-item-content {
    flex: 1;
}

.list-item-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.list-item h3 {
    margin: 0 0 10px 0;
}

.list-item .details-grid {
    margin: 0;
}

@media (max-width: 768px) {
    .list-item {
        flex-direction: column;
    }
    
    .list-item-actions {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .list-item-actions button {
        flex: 1;
    }
}

.nav-tab .icon {
    display: none;
    font-size: 1.2em;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .nav-tabs {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        margin: 0;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 5px;
        font-size: 0.8em;
        min-height: unset;
        flex: 1;
    }

    .nav-tab .icon {
        display: block;
    }

    /* Ajuster le padding du container pour la barre de navigation fixe */
    #container {
        padding-bottom: 100px;
    }
}

.header-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.back-button {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    color: #333;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: #e9ecef;
    transform: translateX(-3px);
}

.back-button::before {
    content: "←";
    font-size: 1.2em;
}

h1 {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 2em;
    color: #2c3e50;
}

/* Amélioration du design des onglets */
.nav-tabs {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    gap: 5px;
    border-bottom: none;
}

.nav-tab {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-tab:hover::after {
    width: 100%;
}

.nav-tab.active {
    background: #007bff;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.1);
}

.nav-tab.active::after {
    width: 100%;
    background: white;
}

/* Amélioration des blocs de service */
.service-block {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-block h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #007bff;
    margin: 0;
}

/* Amélioration des listes */
.list-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Version mobile améliorée */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .back-button {
        position: relative;
        width: 100%;
        justify-content: center;
    }

    .nav-tabs {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-radius: 20px 20px 0 0;
        padding: 15px;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-tab {
        padding: 10px;
        font-size: 0.8em;
    }

    .nav-tab .icon {
        font-size: 1.5em;
        margin-bottom: 5px;
    }

    #container {
        padding-bottom: 100px;
    }
}

.stats-container {
    margin: 20px 0 30px 0;
    position: relative;
}

.stats-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Masquer la scrollbar tout en gardant la fonctionnalité */
.stats-scroll::-webkit-scrollbar {
    display: none;
}

.stats-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stat-block {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-block h3 {
    font-size: 0.9em;
    color: #6c757d;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.stat-block .stat-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    margin: 0;
}

/* Ajout d'indicateurs de défilement */
.stats-container::before,
.stats-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 1;
}

.stats-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.stats-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .stat-block {
        flex: 0 0 160px;
        padding: 15px;
    }

    .stat-block .stat-number {
        font-size: 1.5em;
    }
}

/* Styles pour les derniers emails */
.recent-mails {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.recent-mail-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.recent-mail-item:last-child {
    border-bottom: none;
}

.recent-mail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.recent-mail-time {
    color: #666;
}

.recent-mail-domain {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.recent-mail-subject {
    font-weight: 500;
    margin: 0 0 5px 0;
}

.recent-mail-addresses {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Améliorations mobiles générales */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    #container {
        width: 100%;
        padding: 15px;
        border-radius: 0;
        margin-bottom: 80px; /* Espace pour la navigation fixe */
    }

    .header-container {
        padding: 10px 0;
    }

    h1 {
        font-size: 1.5em;
    }

    .service-grid {
        gap: 10px;
    }

    .service-block {
        padding: 15px;
    }

    .time-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .time-stat-block {
        padding: 15px;
    }

    .time-stat-block h3 {
        font-size: 0.8em;
    }

    .time-stat-number {
        font-size: 1.5em;
    }

    /* Style des onglets mobiles */
    .nav-tabs {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        margin: 0;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }

    .nav-tab {
        padding: 8px 5px;
        font-size: 0.75em;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: unset;
    }

    .nav-tab .icon {
        font-size: 1.5em;
        margin-bottom: 4px;
    }

    /* Amélioration des modales sur mobile */
    .modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        padding: 15px;
    }

    /* Style des listes sur mobile */
    .list-item {
        padding: 12px;
    }

    .list-item-actions {
        flex-direction: row;
        margin-top: 10px;
    }

    .list-item-actions button {
        flex: 1;
        padding: 8px;
        font-size: 0.9em;
    }

    /* Amélioration du scroll */
    .view {
        -webkit-overflow-scrolling: touch;
    }
}

/* Animations fluides */
.nav-tab, .service-block, .time-stat-block, .recent-mail-item {
    transition: all 0.3s ease;
}

/* État actif des éléments */
.nav-tab:active, .service-block:active, .time-stat-block:active, .recent-mail-item:active {
    transform: scale(0.98);
}

/* Styles pour les filtres de recherche */
.search-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.search-inputs input {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
}

#date-filter {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-right: 10px;
}

/* Style pour les mail-item */
.mail-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #007bff;
    transition: transform 0.2s ease;
}

.mail-item:hover {
    transform: translateX(5px);
}

.mail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mail-time {
    color: #6c757d;
    font-size: 0.9em;
}

.mail-domain {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    color: #495057;
}

.mail-content {
    margin-top: 10px;
}

.mail-subject {
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.mail-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 0.9em;
    color: #495057;
}

/* Style pour le bouton "Charger plus" */
.load-more-container {
    text-align: center;
    margin: 20px 0;
}

#load-more-btn {
    padding: 10px 20px;
    font-size: 1em;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#load-more-btn:hover {
    background: #5a6268;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-inputs {
        grid-template-columns: 1fr;
    }
    
    #date-filter {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .mail-addresses {
        grid-template-columns: 1fr;
    }
}

/* Ajouter dans le CSS existant */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mails-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.mails-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.load-more-container {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
}

#load-more-btn {
    min-width: 200px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Styles pour la vue pool */
.pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pool-stats {
    display: flex;
    gap: 20px;
}

.pool-stat {
    text-align: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    min-width: 120px;
}

.pool-stat .label {
    display: block;
    font-size: 0.9em;
    color: #6c757d;
    margin-bottom: 5px;
}

.pool-stat .value {
    font-size: 1.5em;
    font-weight: bold;
    color: #007bff;
}

.pool-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.pool-status-filters {
    display: flex;
    gap: 10px;
}

.status-filter {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s;
}

.status-filter.active {
    background: #007bff;
    color: white;
}

.pool-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pool-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.pool-item:hover {
    transform: translateY(-2px);
}

.pool-item.pending {
    border-left: 4px solid #ffc107;
}

.pool-item.processing {
    border-left: 4px solid #17a2b8;
}

.pool-item.retry {
    border-left: 4px solid #dc3545;
}

.pool-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#refresh-pool {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .pool-header {
        flex-direction: column;
        gap: 20px;
    }

    .pool-stats {
        width: 100%;
        justify-content: space-between;
    }

    .pool-filters {
        flex-direction: column;
    }
}