﻿.cookie-wrapper {
    display: flex; 
    justify-content: center;
    bottom: 20px;
    width: 100%;
    z-index: 9999;
}

.cookie-banner {
    width: 500px;
    max-width: 90%;
    margin: 10px 0 20px;
    background: #013991;
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.OLDcookie-banner {
    width: 500px;
    /*position: fixed;*/
    margin: 0 auto;
    bottom: 40px;
    left: 20px;
    right: 20px;
    background: #013991;
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 9999;
}

.cookie-text {
    flex: 1;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.accept-btn {
    background: #28a745;
    color: white;
}

.deny-btn {
    background: #dc3545;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}
