/* EUMA Members Plugin Styles */

.euma-members-container {
    margin: 20px 0;
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.euma-members-table {
    width: 100%;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
}

.euma-members-table thead {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.euma-members-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    border-right: 1px solid #dee2e6;
    white-space: nowrap;
}

.euma-members-table th:last-child {
    border-right: none;
}

.euma-members-table tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.15s ease;
}

.euma-members-table tbody tr:hover {
    background-color: #f8f9fa;
}

.euma-members-table tbody tr.even {
    background-color: #ffffff;
}

.euma-members-table tbody tr.odd {
    background-color: #f8f9fa;
}

.euma-members-table tbody tr:hover {
    background-color: #e9ecef !important;
}

.euma-members-table td {
    padding: 8px;
    vertical-align: middle;
    border-right: 1px solid #dee2e6;
    color: #495057;
}

.euma-members-table td:last-child {
    border-right: none;
}

/* Logo column styling */
.euma-logo-cell {
    width: 80px;
    text-align: center;
    position: relative;
    padding: 8px 4px;
    min-height: 60px;
    vertical-align: top;
}

.euma-row-number {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.euma-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-height: 40px;
}

.euma-member-logo {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.euma-logo-placeholder {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 12px;
}

/* Name columns */
.euma-name-en-cell,
.euma-name-orig-cell {
    min-width: 200px;
    max-width: 250px;
    word-wrap: break-word;
}

.euma-name-en-cell {
    font-weight: 500;
}

/* Acronym column */
.euma-acronym-cell {
    width: 100px;
    text-align: center;
    font-weight: 600;
    color: #007bff;
}

/* Country column */
.euma-country-cell {
    width: 150px;
}

/* Web link styling */
.euma-web-cell {
    width: 80px;
    text-align: center;
}

.euma-web-link {
    display: inline-block;
    padding: 4px 12px;
    background: #00713D;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 113, 61, 0.2);
}

.euma-web-link:hover {
    background: #005a2b;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 113, 61, 0.3);
}

/* Members count column */
.euma-members-cell {
    width: 120px;
    text-align: right;
    font-weight: 500;
    color: #28a745;
}

/* Since column */
.euma-since-cell {
    width: 100px;
    text-align: center;
    color: #6c757d;
}

/* Error message styling */
.euma-error {
    padding: 12px 16px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .euma-members-container {
        margin: 10px -15px;
        border-radius: 0;
    }
    
    .euma-members-table {
        font-size: 13px;
    }
    
    .euma-members-table th,
    .euma-members-table td {
        padding: 6px 4px;
    }
    
    .euma-name-en-cell,
    .euma-name-orig-cell {
        min-width: 150px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    /* Hide table headers on mobile */
    .euma-members-table thead {
        display: none;
    }
    
    /* Convert table to card layout */
    .euma-members-table,
    .euma-members-table tbody,
    .euma-members-table tr {
        display: block;
        width: 100%;
    }
    
    .euma-members-table tbody tr {
        display: block;
        margin-bottom: 20px;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .euma-members-table tbody tr:hover {
        background: #f8f9fa;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    /* Reset all table cells to block display */
    .euma-members-table td {
        display: block;
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 8px;
        position: relative;
    }
    
    .euma-members-table td:last-child {
        margin-bottom: 0;
    }
    
    /* Logo and number positioning */
    .euma-logo-cell {
        position: relative;
        margin-bottom: 15px;
        min-height: 60px;
    }
    
    .euma-row-number {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 16px;
        font-weight: 600;
        color: #495057;
        background: #fff;
        padding: 4px 8px;
        border-radius: 4px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .euma-logo-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 0;
        min-height: 50px;
    }
    
    .euma-member-logo {
        max-width: 50px;
        max-height: 50px;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .euma-logo-placeholder {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }
    
    /* Field layout - vertical style for mobile */
    .euma-name-en-cell,
    .euma-name-orig-cell,
    .euma-acronym-cell,
    .euma-country-cell,
    .euma-web-cell,
    .euma-members-cell,
    .euma-since-cell {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .euma-name-en-cell:last-child,
    .euma-name-orig-cell:last-child,
    .euma-acronym-cell:last-child,
    .euma-country-cell:last-child,
    .euma-web-cell:last-child,
    .euma-members-cell:last-child,
    .euma-since-cell:last-child {
        border-bottom: none;
    }
    
    /* Field labels */
    .euma-name-en-cell::before,
    .euma-name-orig-cell::before,
    .euma-acronym-cell::before,
    .euma-country-cell::before,
    .euma-web-cell::before,
    .euma-members-cell::before,
    .euma-since-cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #212529;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
        margin-bottom: 4px;
    }
    
    /* Field values - base styles */
    .euma-name-en-cell,
    .euma-name-orig-cell,
    .euma-acronym-cell,
    .euma-country-cell,
    .euma-members-cell,
    .euma-since-cell {
        font-size: 14px;
        color: #495057;
        text-align: left;
    }
    
    /* Specific field value styles */
    .euma-name-en-cell {
        font-weight: 500;
    }
    
    .euma-acronym-cell {
        font-weight: 600;
        color: #007bff;
    }
    
    .euma-members-cell {
        font-weight: 500;
        color: #28a745;
    }
    
    .euma-since-cell {
        color: #6c757d;
    }
    
    /* Web link styling for mobile */
    .euma-web-cell {
        display: block;
    }
    
    .euma-web-link {
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 500;
    }
    
    /* Remove alternating row colors on mobile */
    .euma-members-table tbody tr.even,
    .euma-members-table tbody tr.odd {
        background: #f8f9fa;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .euma-members-table tbody tr {
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .euma-row-number {
        font-size: 14px;
        padding: 3px 6px;
    }
    
    .euma-member-logo {
        max-width: 45px;
        max-height: 45px;
    }
    
    .euma-logo-placeholder {
        width: 45px;
        height: 45px;
    }
    
    .euma-name-en-cell,
    .euma-name-orig-cell,
    .euma-acronym-cell,
    .euma-country-cell,
    .euma-web-cell,
    .euma-members-cell,
    .euma-since-cell {
        padding: 6px 0;
    }
    
    .euma-name-en-cell::before,
    .euma-name-orig-cell::before,
    .euma-acronym-cell::before,
    .euma-country-cell::before,
    .euma-web-cell::before,
    .euma-members-cell::before,
    .euma-since-cell::before {
        font-size: 11px;
        font-weight: 700;
        color: #212529;
        display: block;
        margin-bottom: 3px;
    }
    
    .euma-name-en-cell,
    .euma-name-orig-cell,
    .euma-acronym-cell,
    .euma-country-cell,
    .euma-members-cell,
    .euma-since-cell {
        font-size: 13px;
        text-align: left;
    }
    
    .euma-web-link {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .euma-members-table tbody tr {
        margin-bottom: 12px;
        padding: 10px;
    }
    
    .euma-row-number {
        font-size: 13px;
        padding: 2px 5px;
    }
    
    .euma-member-logo {
        max-width: 40px;
        max-height: 40px;
    }
    
    .euma-logo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .euma-name-en-cell,
    .euma-name-orig-cell,
    .euma-acronym-cell,
    .euma-country-cell,
    .euma-web-cell,
    .euma-members-cell,
    .euma-since-cell {
        padding: 5px 0;
    }
    
    .euma-name-en-cell::before,
    .euma-name-orig-cell::before,
    .euma-acronym-cell::before,
    .euma-country-cell::before,
    .euma-web-cell::before,
    .euma-members-cell::before,
    .euma-since-cell::before {
        font-size: 10px;
        font-weight: 700;
        color: #212529;
        display: block;
        margin-bottom: 2px;
    }
    
    .euma-name-en-cell,
    .euma-name-orig-cell,
    .euma-acronym-cell,
    .euma-country-cell,
    .euma-members-cell,
    .euma-since-cell {
        font-size: 12px;
        text-align: left;
    }
    
    .euma-web-link {
        padding: 3px 8px;
        font-size: 10px;
    }
}

/* Carousel Styles */
.euma-members-carousel-container {
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: visible;
    position: relative;
}

.euma-carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 50px 60px;
}

.euma-carousel-track-container {
    flex: 1;
    overflow: hidden;
    margin: 0 10px;
}

.euma-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
}

.euma-carousel-slide {
    flex: 0 0 calc((100% - 100px) / 6); /* 6 logos per view minus gaps */
    min-width: 120px;
    max-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.euma-carousel-logo-link {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* background: #f8f9fa; */
    border: 2px solid transparent;
    text-decoration: none;
}

.euma-carousel-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #55C0EF;
    text-decoration: none;
}

.euma-carousel-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.euma-carousel-logo-link:hover .euma-carousel-logo {
    transform: scale(1.05);
}

.euma-carousel-logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.euma-carousel-logo-link:hover .euma-carousel-logo-overlay {
    transform: translateY(0);
}

.euma-carousel-member-name {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.euma-carousel-btn {
    background: #55C0EF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 2px 8px rgba(85, 192, 239, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.euma-carousel-btn:hover {
    background: #3AAEDC;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(85, 192, 239, 0.4);
}

.euma-carousel-btn:disabled {
    background: #dee2e6;
    cursor: not-allowed;
    transform: translateY(-50%);
    box-shadow: none;
}

.euma-carousel-prev {
    left: 10px;
}

.euma-carousel-next {
    right: 10px;
}

.euma-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: #f8f9fa;
}

.euma-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.euma-carousel-dot:hover {
    background: #55C0EF;
    transform: scale(1.2);
}

.euma-carousel-dot.active {
    background: #55C0EF;
    transform: scale(1.2);
}

/* Responsive carousel styles */
@media (max-width: 1200px) {
    .euma-carousel-slide {
        flex: 0 0 calc((100% - 80px) / 5); /* 5 logos per view */
    }
    
    .euma-carousel-wrapper {
        padding: 45px 50px;
    }
}

@media (max-width: 992px) {
    .euma-carousel-slide {
        flex: 0 0 calc((100% - 60px) / 4); /* 4 logos per view */
        min-width: 130px;
        max-width: 170px;
    }
    
    .euma-carousel-wrapper {
        padding: 45px 45px;
    }
    
    .euma-carousel-logo-link {
        height: 75px; /* Slightly increased for better visibility */
    }
    
    .euma-carousel-logo {
        padding: 8px; /* Consistent padding */
    }
    
    /* Slightly smaller dots for tablets */
    .euma-carousel-dots {
        gap: 6px;
        padding: 12px 18px;
    }
    
    .euma-carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .euma-carousel-member-name {
        font-size: 11px;
        margin-top: 6px;
    }
}

@media (max-width: 768px) {
    .euma-carousel-slide {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 logos per view for better visibility */
        min-width: 140px;
        max-width: 180px;
    }
    
    .euma-carousel-wrapper {
        padding: 50px 35px;
    }
    
    .euma-carousel-logo-link {
        height: 80px; /* Increased from 60px */
    }
    
    .euma-carousel-logo {
        padding: 8px; /* Reduced padding for more logo space */
    }
    
    .euma-carousel-btn {
        width: 40px; /* Increased from 35px */
        height: 40px;
    }
    
    .euma-carousel-prev {
        left: 8px;
    }
    
    .euma-carousel-next {
        right: 8px;
    }
    
    /* Smaller dots for mobile to prevent overflow */
    .euma-carousel-dots {
        gap: 4px;
        padding: 12px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .euma-carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .euma-carousel-member-name {
        font-size: 12px; /* Slightly larger text */
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .euma-carousel-slide {
        flex: 0 0 calc((100% - 20px) / 2); /* 2 logos per view */
        min-width: 120px;
        max-width: 160px;
    }
    
    .euma-carousel-wrapper {
        padding: 45px 30px; /* Increased padding for better spacing */
    }
    
    .euma-carousel-logo-link {
        height: 70px; /* Increased from 50px */
    }
    
    .euma-carousel-logo {
        padding: 6px; /* Reduced padding for more logo space */
    }
    
    .euma-carousel-track {
        gap: 12px; /* Increased gap for better separation */
    }
    
    .euma-carousel-btn {
        width: 35px; /* Slightly smaller for very small screens */
        height: 35px;
    }
    
    .euma-carousel-prev {
        left: 5px;
    }
    
    .euma-carousel-next {
        right: 5px;
    }
    
    /* Even smaller dots for very small screens */
    .euma-carousel-dots {
        gap: 3px;
        padding: 10px 12px; /* Increased padding */
    }
    
    .euma-carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .euma-carousel-member-name {
        font-size: 11px;
        margin-top: 6px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .euma-carousel-slide {
        flex: 0 0 calc((100% - 15px) / 2); /* 2 logos per view with minimal gap */
        min-width: 110px;
        max-width: 140px;
    }
    
    .euma-carousel-wrapper {
        padding: 40px 25px; /* Reduced padding for very small screens */
    }
    
    .euma-carousel-logo-link {
        height: 65px; /* Slightly smaller for very small screens */
    }
    
    .euma-carousel-logo {
        padding: 5px; /* Minimal padding */
    }
    
    .euma-carousel-track {
        gap: 10px;
    }
    
    .euma-carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .euma-carousel-prev {
        left: 3px;
    }
    
    .euma-carousel-next {
        right: 3px;
    }
    
    .euma-carousel-dots {
        gap: 2px;
        padding: 8px 10px;
    }
    
    .euma-carousel-dot {
        width: 5px;
        height: 5px;
    }
    
    .euma-carousel-member-name {
        font-size: 10px;
        margin-top: 4px;
    }
}

/* Print styles */
@media print {
    .euma-members-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .euma-members-table tbody tr:hover {
        background-color: transparent !important;
    }
    
    .euma-web-link {
        background: transparent;
        color: #000 !important;
        border: 1px solid #000;
    }
    
    .euma-members-carousel-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .euma-carousel-btn,
    .euma-carousel-dots {
        display: none;
    }
    
    .euma-carousel-track {
        flex-wrap: wrap;
    }
    
    .euma-carousel-slide {
        flex: 0 0 calc(16.666% - 10px); /* Show all logos in print */
    }
}

/* Statistics Styles */
.euma-statistics-container {
    margin: 40px 0;
    padding: 0;
    background: transparent;
}

.euma-statistics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: rgba(108, 117, 125, 0.85);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.euma-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: white;
}

.euma-stat-item:last-child {
    border-right: none;
}


.euma-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #55C0EF, #3AAEDC);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


.euma-stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.euma-stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-top: 10px;
}

/* Responsive statistics styles */
@media (max-width: 1200px) {
    .euma-statistics-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .euma-stat-item {
        padding: 50px 15px;
    }
    
    .euma-stat-number {
        font-size: 42px;
    }
    
    .euma-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .euma-statistics-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    /* First row: Individual members, Members, Trails */
    .euma-stat-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .euma-stat-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .euma-stat-item:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
        border-right: none;
    }
    
    /* Second row: Huts and Climbing areas centered with empty space */
    .euma-stat-item:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .euma-stat-item:nth-child(5) {
        grid-column: 3;
        grid-row: 2;
        border-right: none;
    }
    
    .euma-stat-item {
        padding: 40px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .euma-stat-item:nth-child(4),
    .euma-stat-item:nth-child(5) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .euma-statistics-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    
    /* Individual members takes more space (first item, full width top row) */
    .euma-stat-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
        border-right: none;
    }
    
    /* Members takes right side of second row */
    .euma-stat-item:nth-child(2) {
        grid-column: 2;
        grid-row: 2;
        border-right: none;
    }
    
    /* Trails takes left side of second row */
    .euma-stat-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    /* Huts takes left side of third row */
    .euma-stat-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    /* Climbing areas takes right side of third row */
    .euma-stat-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
        border-right: none;
    }
    
    .euma-stat-item {
        padding: 35px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .euma-stat-item:nth-child(4),
    .euma-stat-item:nth-child(5) {
        border-bottom: none;
    }
    
    .euma-stat-number {
        font-size: 36px;
    }
    
    .euma-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .euma-statistics-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
    }
    
    .euma-stat-item {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        grid-column: 1;
    }
    
    /* Reset grid positioning for mobile single column */
    .euma-stat-item:nth-child(1),
    .euma-stat-item:nth-child(2),
    .euma-stat-item:nth-child(3),
    .euma-stat-item:nth-child(4),
    .euma-stat-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .euma-stat-item:last-child {
        border-bottom: none;
    }
    
    .euma-stat-number {
        font-size: 32px;
    }
    
    .euma-stat-label {
        font-size: 11px;
    }
}

/* Animation keyframes for counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.euma-stat-number.counting {
    animation: countUp 0.6s ease-out;
}

/* Print styles for statistics */
@media print {
    .euma-statistics-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .euma-statistics-grid {
        background: #f8f9fa;
        color: #000;
    }
    
    .euma-stat-item {
        background: transparent;
        color: #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
    }
    
    
    .euma-stat-number {
        color: #000;
        text-shadow: none;
    }
    
    .euma-stat-label {
        color: #000;
    }
}
