/* Styles pour le frontend */
.wp-events-frontend {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Nouveau shortcode principal */
.wp-events-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wp-events-view-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.wp-events-view-btn {
    padding: 10px 20px;
    border: 2px solid #d4b896;
    background: white;
    color: #5a4a3a;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}   

.wp-events-view-btn:hover {
    background: #f5ede3;
}

.wp-events-view-btn.active {
    background: #d4b896;
    color: #5a4a3a;
}

.wp-events-content-area {
    min-height: 400px;
}

.wp-events-day-group { margin-bottom: 24px; }
.wp-events-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f7f7;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 10px 14px;
}
.wp-events-day-title { font-weight: 600; color: #1d2327; display:flex; align-items:center; gap:8px; }
.wp-events-day-count { color: #50575e; font-size: 12px; background:#eef1f4; border-radius:999px; padding:4px 10px; }
.wp-events-day-items { margin-top: 10px; display: grid; gap: 12px; }

.wp-events-item-row { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: start; }
.wp-events-item-time { color:#50575e; font-weight: 600; text-align: right; padding-top: 16px; }
.wp-events-item-card { border:1px solid #e2e4e7; border-radius:8px; background:#fff; }
.wp-events-item-inner { display:flex; align-items:stretch; padding:0; }
.wp-events-item-thumb { 
    flex-shrink:0; 
    width:160px; 
    min-height:200px;
    align-self: flex-start;
    border-radius:8px 0 0 8px; 
    overflow:hidden;
    background-color: #f0f0f1;
    position: relative;
}
.wp-events-item-thumb img { 
    width:100%; 
    height:auto;
    min-height:200px;
    object-fit:cover; 
    object-position: center;
    display:block;
}
.wp-events-item-content { flex:1; padding:16px; color: #1d2327; }
.wp-events-item-card-top { display:flex; align-items:start; justify-content: space-between; gap: 12px; margin-bottom:8px; }
.wp-events-item-title { font-weight:600; color:#1d2327; font-size:16px; }
.wp-events-status-pill { background:#dbeafe; color:#1e40af; border-radius:999px; padding:4px 12px; font-size:12px; white-space:nowrap; }
.wp-events-item-meta-line { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; color:#50575e; font-size:13px; }
.wp-events-item-cat { color:#fff; border-radius:999px; padding:2px 8px; font-size:12px; }
.wp-events-item-desc-wrapper { margin-top:8px; position: relative; }
.wp-events-item-desc { 
    color:#374151; 
    line-height:1.5; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}
.wp-events-item-desc.expanded {
    max-height: none;
}
.wp-events-item-desc-wrapper.has-more .wp-events-item-desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5em;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}
.wp-events-item-desc-wrapper.has-more .wp-events-item-desc.expanded::after {
    display: none;
}
.wp-events-desc-toggle {
    margin-top: 8px;
    padding: 4px 8px;
    background: transparent;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
    display: none;
}
.wp-events-item-desc-wrapper.has-more .wp-events-desc-toggle {
    display: inline-block;
}
.wp-events-desc-toggle:hover {
    color: #005177;
}

.wp-events-desc-toggle:active,
.wp-events-desc-toggle:focus {
    color: #0073aa !important;
    outline: none;
    text-decoration: underline;
}

.wp-events-desc-toggle:active:hover {
    color: #005177 !important;
}

.wp-events-desc-toggle.expanded {
    color: #1d2327 !important;
}

.wp-events-desc-toggle.expanded:hover {
    color: #000000 !important;
}

.wp-events-desc-toggle.expanded:active,
.wp-events-desc-toggle.expanded:focus {
    color: #1d2327 !important;
    outline: none;
}

.wp-events-desc-toggle.expanded:active:hover {
    color: #000000 !important;
}

.wp-events-list-view { display: block; }
.wp-events-calendar-view { display: none; }

.wp-events-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wp-events-item h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.wp-events-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.wp-events-description {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.wp-events-list {
    margin: 20px 0;
}

.wp-events-controls {
    margin-bottom: 20px;
    text-align: right;
}

.wp-events-controls button {
    margin-left: 10px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wp-events-controls button:hover {
    background: #d4b896;
    color: #5a4a3a;
    border-color: #d4b896;
}

.wp-events-controls button.active {
    background: #d4b896;
    color: #5a4a3a;
    border-color: #d4b896;
}

.wp-events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-events-container.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.wp-events-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.wp-events-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.wp-events-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wp-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-events-content {
    padding: 20px;
    color: #1d2327;
}

.wp-events-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.wp-events-date {
    font-weight: bold;
    color: #c4a676;
}

.wp-events-time {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
}

.wp-events-category {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.wp-events-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    line-height: 1.3;
    color: #333;
}

.wp-events-description {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.wp-events-location {
    font-size: 14px;
    color: #666;
}

/* Styles pour le calendrier */
.wp-events-calendar {
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wp-events-calendar-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    gap: 20px;
}

.wp-events-calendar-nav button {
    padding: 10px 18px;
    border: 2px solid #d4b896;
    background: #d4b896;
    color: #5a4a3a;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.wp-events-calendar-nav button:first-child {
    justify-self: start;
}

.wp-events-calendar-nav button:last-child {
    justify-self: end;
}

.wp-events-calendar-nav button:hover {
    background: #c4a676;
    border-color: #c4a676;
    color: #5a4a3a;
}

.wp-events-calendar-nav button:active,
.wp-events-calendar-nav button:focus {
    background: #d4b896 !important;
    border-color: #d4b896 !important;
    color: #5a4a3a !important;
    outline: none;
}

.wp-events-calendar-nav button:active:hover {
    background: #c4a676 !important;
    border-color: #c4a676 !important;
}

.wp-events-calendar-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #4b3d2d;
    justify-self: center;
    text-align: center;
}

.wp-events-calendar-grid {
    display: flex;
    flex-direction: column;
}

.wp-events-calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #d4b896;
    color: #5a4a3a;
}

.wp-events-day-header {
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    border-right: 1px solid rgba(90,74,58,0.2);
    color: #5a4a3a;
}

.wp-events-day-header:last-child {
    border-right: none;
}

.wp-events-calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    min-height: 500px;
}

.wp-events-day {
    background: #fff;
    min-height: 80px;
    position: relative;
    cursor: default;
    padding: 5px;
    pointer-events: auto;
}

.wp-events-day:hover {
    background: #f9f9f9;
}

.wp-events-day-today {
    background: #e3f2fd;
}

.wp-events-day-has-events {
    background: #f0f0f0;
}

.wp-events-day-other-month {
    color: #ccc;
    background: #fafafa;
}

.wp-events-day-number {
    font-weight: bold;
    font-size: 16px;
    color: #1d2327;
    margin-bottom: 5px;
}

.wp-events-day-events {
    margin-top: 5px;
    position: relative;
    z-index: 15;
    pointer-events: none;
}

.wp-events-day-events .wp-events-day-event {
    pointer-events: auto;
}

/* Modal pour l'affichage complet de l'événement */
.wp-events-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.wp-events-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.wp-events-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    border: none;
    background: none;
}

.wp-events-modal-close:hover {
    color: #000;
}

.wp-events-modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #1d2327;
    margin-bottom: 15px;
}

.wp-events-modal-info {
    margin-bottom: 15px;
}

.wp-events-modal-info-item {
    margin-bottom: 10px;
    color: #50575e;
    font-size: 14px;
}

.wp-events-modal-info-item strong {
    color: #1d2327;
}

.wp-events-modal-description {
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.6;
}

.wp-events-modal-category {
    background-color: #0073aa;
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-top: 4px;
}

.wp-events-modal-image {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    max-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f1;
    margin-left: auto;
    margin-right: auto;
}

.wp-events-modal-image img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.wp-events-add-to-calendar {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f1;
    color: #1d2327;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
    border: 1px solid #c3c4c7;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}

.wp-events-add-to-calendar:hover {
    background: #e0e0e1;
    color: #1d2327;
    text-decoration: none;
}

.wp-events-calendar-dropdown {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    z-index: 100000;
}

.wp-events-calendar-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100001;
    border-radius: 4px;
    border: 1px solid #c3c4c7;
}

.wp-events-calendar-dropdown-content a {
    color: #1d2327;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f1;
}

.wp-events-calendar-dropdown-content a:last-child {
    border-bottom: none;
}

.wp-events-calendar-dropdown-content a:hover {
    background-color: #f0f0f1;
}

.wp-events-calendar-dropdown.open .wp-events-calendar-dropdown-content {
    display: block;
}

.wp-events-day-event {
    font-size: 11px;
    padding: 4px 6px;
    margin-bottom: 3px;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    word-break: break-word;
    position: relative;
    z-index: 20;
    -webkit-tap-highlight-color: rgba(0,0,0,0.2);
    touch-action: manipulation;
    user-select: none;
    display: block;
    transition: all 0.2s ease;
}

.wp-events-day-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wp-events-day-event-category {
    font-weight: 700;
    display: block;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.95;
    margin-bottom: 1px;
}

.wp-events-day-event-title {
    font-weight: 600;
    display: block;
    font-size: 10px;
    line-height: 1.3;
    margin-top: 2px;
    opacity: 0.85;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sur desktop, afficher titre et catégorie mais catégorie en premier */
@media (min-width: 769px) {
    .wp-events-day-event-title {
        display: block;
    }
}

.wp-events-day-event-time {
    display: block;
    font-size: 10px;
    opacity: 0.9;
    margin-top: 2px;
}

.wp-events-item-prices,
.wp-events-prices {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e4e7;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #1d2327 !important;
}

.wp-events-price-member,
.wp-events-price-non-member {
    color: #1d2327 !important;
    font-weight: 500;
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0f0f1;
    border-radius: 4px;
}

.wp-events-modal-prices {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e4e7;
}

/* Styles pour le formulaire */
.wp-events-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wp-events-form-group {
    margin-bottom: 20px;
}

.wp-events-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.wp-events-form-group input,
.wp-events-form-group select,
.wp-events-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wp-events-form-group input:focus,
.wp-events-form-group select:focus,
.wp-events-form-group textarea:focus {
    outline: none;
    border-color: #d4b896;
    box-shadow: 0 0 0 2px rgba(212,184,150,0.2);
}

.wp-events-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.wp-events-submit-btn {
    background: #d4b896;
    color: #5a4a3a;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wp-events-submit-btn:hover {
    background: #c4a676;
}

.wp-events-form-disabled,
.wp-events-form-login {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    margin: 20px 0;
    color: #666;
}

.wp-events-form-message {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.wp-events-form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wp-events-form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wp-events-form-message p {
    margin: 0;
}

.wp-events-no-events {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    /* Conteneur principal - réduire le padding sur mobile */
    .wp-events-main-container {
        padding: 10px;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* S'assurer que le contenu ne déborde pas */
    .wp-events-content-area {
        width: 100%;
        overflow-x: hidden;
    }
    
    .wp-events-day-group {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Sélecteur de vue - ajuster pour mobile */
    .wp-events-view-selector {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .wp-events-view-btn {
        padding: 8px 16px;
        font-size: 14px;
        flex: 1;
    }
    
    /* Ajuster la grille de la ligne d'événement sur mobile */
    .wp-events-item-row {
        grid-template-columns: 50px 1fr;
        gap: 8px;
    }
    
    .wp-events-item-time {
        font-size: 13px;
        padding-top: 12px;
        text-align: left;
    }
    
    /* Empiler l'image et le contenu verticalement sur mobile */
    .wp-events-item-inner {
        flex-direction: column;
        width: 100%;
    }
    
    .wp-events-item-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .wp-events-item-thumb {
        width: 100%;
        min-height: 180px;
        border-radius: 8px 8px 0 0;
    }
    
    .wp-events-item-thumb img {
        min-height: 180px;
    }
    
    .wp-events-item-content {
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Ajuster les en-têtes de jour */
    .wp-events-day-header {
        padding: 8px 12px;
        flex-wrap: wrap;
    }
    
    .wp-events-day-title {
        font-size: 14px;
    }
    
    /* Ajuster les métadonnées */
    .wp-events-item-meta-line {
        font-size: 12px;
        gap: 8px;
    }
    
    .wp-events-item-title {
        font-size: 15px;
    }
    
    .wp-events-item-card-top {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .wp-events-calendar-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .wp-events-calendar-nav button {
        width: 100%;
    }
    
    .wp-events-day {
        min-height: 50px;
        padding: 5px;
    }
    
    .wp-events-day-event {
        font-size: 11px;
        padding: 6px 4px;
        min-height: 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3px;
        pointer-events: auto;
        z-index: 20;
        position: relative;
        border-radius: 6px;
        text-align: center;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    /* Cacher le titre sur mobile, afficher uniquement la catégorie */
    .wp-events-day-event-title {
        display: none !important;
    }
    
    /* Mettre la catégorie en évidence sur mobile */
    .wp-events-day-event-category {
        font-weight: 700;
        font-size: 10px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        display: block;
        width: 100%;
    }
    
    .wp-events-day-event-time {
        font-size: 9px;
        opacity: 0.85;
        margin-top: 2px;
        display: block;
    }
    
    /* Améliorer l'affichage des jours sur mobile */
    .wp-events-day {
        min-height: 65px;
        padding: 4px 2px;
        font-size: 12px;
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .wp-events-day-number {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 3px;
        color: #1d2327;
    }
    
    /* Réduire la taille des en-têtes de jour */
    .wp-events-calendar-header {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .wp-events-day-header {
        padding: 10px 4px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Améliorer l'espacement du calendrier */
    .wp-events-calendar-grid {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .wp-events-calendar-body {
        min-width: 100%;
        gap: 0;
    }
    
    /* Améliorer la navigation du calendrier sur mobile */
    .wp-events-calendar-nav {
        padding: 15px 10px;
        gap: 10px;
    }
    
    .wp-events-calendar-nav button {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .wp-events-calendar-nav button:active,
    .wp-events-calendar-nav button:focus {
        background: #d4b896 !important;
        border-color: #d4b896 !important;
        color: #5a4a3a !important;
        outline: none;
    }
    
    .wp-events-calendar-nav button:active:hover {
        background: #c4a676 !important;
        border-color: #c4a676 !important;
    }
    
    .wp-events-calendar-title {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Améliorer le conteneur du calendrier */
    .wp-events-calendar {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    /* Améliorer les jours avec événements */
    .wp-events-day-has-events {
        background: #f8f9fa;
    }
    
    .wp-events-day-today {
        background: #e3f2fd;
        border: 2px solid #2196F3;
    }
    
    .wp-events-day-today .wp-events-day-number {
        color: #1976D2;
        font-weight: 700;
    }
    
    /* Améliorer les jours du mois précédent/suivant */
    .wp-events-day-other-month {
        background: #fafafa;
        color: #bbb;
    }
    
    .wp-events-day-other-month .wp-events-day-number {
        color: #bbb;
        font-weight: 400;
    }
    
    .wp-events-day-events {
        position: relative;
        z-index: 15;
    }
    
    .wp-events-container.grid {
        grid-template-columns: 1fr;
    }
    
    .wp-events-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .wp-events-controls {
        text-align: center;
    }
    
    .wp-events-controls button {
        margin: 5px;
        width: 120px;
    }

    /* Dropdown agenda mobile-friendly */
    .wp-events-calendar-dropdown {
        width: 100%;
    }
    .wp-events-add-to-calendar {
        width: 100%;
        text-align: center;
    }
    .wp-events-calendar-dropdown-content {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
    }
}
