:root {
    --primary-color: #6a1b9a;
    --secondary-color: #9c27b0;
    --header-height: 70px;
    --accent-color: #ce93d8;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #333;
    --gray-color: #6c757d;
}

/* Styles pour le bouton flottant */
.customizer-links {
    position: fixed;
    right: 0px;
    top: 35%;
    z-index: 3;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-box-shadow: 0 0 37px rgba(8, 21, 66, 0.1);
    box-shadow: 0 0 37px rgba(8, 21, 66, 0.1);
}

.tab-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.nav-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 0 5px 5px 5px;
    margin: 0; /* Suppression de la marge négative */
    scroll-padding-left: 10px; /* Ajout pour bien voir le premier élément */
}

.nav-tabs::-webkit-scrollbar {
    height: 4px;
}

.nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.nav-tabs::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border: none;
    border-bottom: 2px solid #FFD700;
    background: transparent;
}

.nav-tabs .nav-link i {
    margin-right: 8px;
}

@media (max-width: 800px) {
    .nav-tabs {
        padding-left: 50px; /* Décale tout légèrement pour voir le premier bouton */
    }

    .nav-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .nav-tabs::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

    .nav-tabs::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .tab-container {
        padding: 15px 15px;
    }

    .nav-tabs .nav-link {
        text-align: center;
        border-bottom: 1px solid #e9ecef;
        padding: 12px 20px;
        min-width: max-content;
        margin-bottom: -1px;
    }

    .nav-tabs .nav-link:hover {
        transform: translateY(-2px);
    }
}

.list ul {
    list-style: none; /* Supprime les puces par défaut */
    padding: 0;
    margin: 0;
}

.list li {
    display: flex;
    align-items: center;
    gap: 12px; /* Espacement entre l’icône et le texte */
    padding: 10px 10px;
    border-radius: 8px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.list li::before {
    content: "✔"; /* Icône personnalisée */
    font-size: 14px;
    color: #B22222; /* Rouge profond */
    font-weight: bold;
}

.list li:hover {
    transform: translateX(5px);
}

/* Responsive: Ajustement pour petits écrans */
@media (max-width: 600px) {
    .list li {
        font-size: 14px;
        padding: 8px 12px;
    }
}

.card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    background: linear-gradient(135deg, #E6A8D7 0%, #E6A8D7 100%);
    color: white;
    padding: 1.5rem;
}

.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    transition: color 0.3s;
}

#searchInput {
    padding: 12px 40px 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

#searchInput:focus {
    box-shadow: 0 5px 15px rgba(75, 108, 183, 0.15);
    border-color: #E6A8D7;
}

#searchInput:focus + .search-icon {
    color: #E6A8D7;
}

.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    color: #182848;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.2rem 1rem;
}

.table td {
    padding: 1.2rem 1rem;
    vertical-align: middle;
    font-size: 0.95rem;
}

.table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.btn-sm {
    border-radius: 8px;
    margin: 0 4px;
    padding: 0.5rem 0.8rem;
}

.pagination {
    margin-bottom: 0;
}

.badge {
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: linear-gradient(135deg, #2dce89 0%, #26a69a 100%) !important;
}

.page-link {
    padding: 0.6rem 1rem;
    color: #4b6cb7;
    border: none;
    margin: 0 5px;
    border-radius: 8px;
    font-weight: 500;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    border-color: #4b6cb7;
    box-shadow: 0 5px 15px rgba(75, 108, 183, 0.3);
}

.page-link:hover {
    background-color: rgba(75, 108, 183, 0.1);
    color: #4b6cb7;
    transform: translateY(-2px);
}

.page-item.disabled .page-link {
    color: #adb5bd;
    background-color: transparent;
}

/* Hover effects */
.table tbody tr:hover {
    background-color: rgba(75, 108, 183, 0.05);
    cursor: pointer;
    transform: translateX(5px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 767.98px) {
    .card-header .row {
        flex-direction: column;
    }

    .card-header .col, .card-header .col-auto {
        width: 100%;
    }

    .search-box {
        margin-top: 1rem;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .table th, .table td {
        white-space: nowrap;
        padding: 0.8rem 0.6rem;
    }

    .pagination {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .page-link {
        padding: 0.5rem 0.8rem;
        margin: 0 3px;
    }
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    padding: 0.2rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.profile-image-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.2);
    transition: all 0.3s ease;
}

.profile-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.profile-image:hover {
    transform: scale(1.1);
}

.profile-info h1 {
    color: var(--primary-color);
    font-size: calc(2rem + 1.2vw);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-info h1,
.profile-info h3 {
    width: 75%;
}

.profile-info h3 {
    font-size: calc(1rem + 0.2vw);
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.profile-tags {
    margin-top: 1rem;
}

.profile-tags .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-tags .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.edit-profile-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 40px);
    word-break: break-word;
}

.edit-profile-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.edit-profile-btn i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Share Button and Options */
.share-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 101;
}

.share-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.share-options {
    position: absolute;
    top: 55px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.share-options.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.share-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.share-option:hover {
    transform: scale(1.1) translateY(-5px);
}

.share-option.whatsapp {
    background-color: #25D366;
}

.share-option.facebook {
    background-color: #1877F2;
}

.share-option.copy-link {
    background-color: #6c757d;
}

.link-copied-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.link-copied-toast.show {
    opacity: 1;
}

/* Biography Section */
.biography-section {
    background-color: white;
}

.bio-text {
    margin-bottom: 1rem;
    text-align: justify;
}

.info-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.list-group-item {
    border-left: none;
    border-right: none;
    padding: 0.75rem 0.50rem;
}

.list-group-item:first-child {
    border-top: none;
}

/* Quote Section */
.quote-section {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.blockquote {
    border-left: 5px solid var(--primary-color);
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

.blockquote-footer {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    background-color: white;
}

.gallery-item {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.75rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Awards Section */
.award-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Related Figures Section */
.related-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    height: 100%;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

.related-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.related-title {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* Women Cards Section Styles */
.woman-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 20px;
}

.woman-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.2);
}

.woman-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.woman-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.woman-card:hover .woman-card-image img {
    transform: scale(1.1);
}

.woman-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(106, 27, 154, 0.7), transparent);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.woman-card:hover .woman-image-overlay {
    opacity: 0.8;
}

.woman-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s ease;
}

.woman-card:hover .woman-social {
    bottom: 20px;
}

.woman-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.woman-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.woman-card-content {
    padding: 25px 20px;
    text-align: center;
}

.woman-card-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.woman-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.woman-desc {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.woman-card-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

.woman-card-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 27, 154, 0.4);
}

/* Responsive adjustments for woman cards */
@media (max-width: 992px) {
    .woman-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .woman-card {
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .woman-card-image {
        height: 240px;
    }

    .woman-social {
        bottom: 20px;
        opacity: 1;
    }
}

/* Categories Section Styles */
.categories-section {
    background-color: #f9f7fe;
    padding: 4rem 0;
}

.category-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.4s ease;
    z-index: -1;
}

#category-politics::before {
    background-color: #3f51b5;
}

#category-business::before {
    background-color: #f44336;
}

#category-arts::before {
    background-color: #4caf50;
}

.category-card:hover {
    transform: translateY(-15px);
}

.category-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-color), white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#category-politics .category-icon {
    color: #3f51b5;
}

#category-business .category-icon {
    color: #f44336;
}

#category-arts .category-icon {
    color: #4caf50;
}

.category-card:hover .category-icon {
    transform: rotateY(180deg);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

#category-politics:hover .category-title {
    color: #3f51b5;
}

#category-business:hover .category-title {
    color: #f44336;
}

#category-arts:hover .category-title {
    color: #4caf50;
}

.category-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-color);
}

.category-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 25px;
}

.category-link::after {
    content: '\f061';
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.category-link:hover {
    letter-spacing: 1px;
}

.category-link:hover::after {
    right: -5px;
}

#category-politics .category-link {
    color: #3f51b5;
}

#category-business .category-link {
    color: #f44336;
}

#category-arts .category-link {
    color: #4caf50;
}

/* Responsive adjustments for categories */
@media (max-width: 768px) {
    .category-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .category-card {
        max-width: 320px;
        margin: 0 auto 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .profile-image-container {
        width: 240px;
        height: 240px;
    }

    .profile-info h1,
    .profile-info h3 {
        width: auto;
        max-width: 100%;
    }

    .edit-profile-btn {
        font-size: 0.8rem;
        padding: 7px 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .profile-image-container {
        width: 220px;
        height: 220px;
        margin-bottom: 1.5rem;
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .profile-info h1,
    .profile-info h3 {
        width: auto;
        max-width: 100%;
    }

    .blockquote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .bio-text {
        text-align: left;
    }

    .edit-profile-btn {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }

    .profile-image-container {
        width: 180px;
        height: 180px;
    }

    .profile-info h1 {
        font-size: calc(1.8rem + 1vw);
    }

    .profile-info h3 {
        font-size: calc(0.9rem + 0.3vw);
    }

    .blockquote {
        font-size: 1.1rem;
    }

    .gallery-caption {
        position: relative;
        background: #f8f9fa;
        color: var(--text-color);
    }

    .profile-info h1,
    .profile-info h3 {
        width: auto;
        max-width: 100%;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        margin-right: 0.5rem;
    }

    .edit-profile-btn {
        font-size: 0.75rem;
        padding: 6px 10px;
        gap: 5px;
    }
}

/* Additional mobile fixes */
@media (max-width: 400px) {
    .profile-image-container {
        width: 150px;
        height: 150px;
    }

    .profile-info h1 {
        font-size: calc(1.5rem + 0.8vw);
    }

    .profile-info h1,
    .profile-info h3 {
        width: auto;
        max-width: 100%;
    }

    .profile-tags .badge {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }

    .edit-profile-btn {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
}
