/* Stat container and text styling */
.stat-container {
    background-color: #f0f0f0; /* Light grey background */
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
}

.arrow-bar {
    position: relative;
    margin-bottom: 20px;
}

.arrow-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 0.9em; /* Font size adjustment */
    padding: 5px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .footer-statistics {
        flex-direction: column;
        align-items: center;
    }

    .stat-container {
        width: 100%;
        margin: 10px 0;
    }

    .arrow-text {
        font-size: 0.75em; /* Adjusted font size for mobile */
    }
}

@media (min-width: 769px) {
    .footer-statistics {
        display: flex;
        justify-content: space-between;
    }

    .stat-container {
        width: 48%; /* Containers side by side on desktop */
    }

    .arrow-text {
        font-size: 0.9em;
    }
}

/*COOKİE*/
.cookie-consent-container {
    position: fixed;
    bottom: 20px;
    right: 30px; /* 'left' yerine 'right' kullan */
    z-index: 9999;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.cookie-consent a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}


