/* Custom CSS για CookieConsent v3 */
:root {
    --cc-bg: #ffffff;
    --cc-text: #333333;
    --cc-btn-primary-bg: #4a4a4a; /* Σκούρο γκρι */
    --cc-btn-primary-text: #ffffff;
    --cc-btn-primary-hover-bg: #333333;
    
    --cc-btn-secondary-bg: #f1f1f1; /* Ανοιχτό γκρι */
    --cc-btn-secondary-text: #333333;
    --cc-btn-secondary-hover-bg: #e2e2e2;

    --cc-modal-border-radius: 8px;
}

/* Κάνει το banner πιο ευρύχωρο */
.cm {
    padding: 30px !important;
    max-width: 450px !important;
}

/* Το εικονίδιο που αιωρείται (Sticky Settings Icon) */
.settings-icon-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: #4a4a4a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: none;
    transition: all 0.3s ease;
}


.settings-icon-float:hover {
    transform: scale(1.1);
    background-color: #333333;
}