﻿/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #29bc3c; /* Dark green background matching Bet9ja colors */
    color: #ffffff; /* White text */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

    .cookie-content p {
        font-family: 'Arial', sans-serif; /* Font matching Bet9ja Careers */
        font-size: 14px;
        margin: 0;
    }

.cookie-buttons {
    margin-top: 10px;
}

    .cookie-buttons .btn {
        background-color: #043109; /* Bright orange for visibility */
        border: none;
        color: white;
        padding: 10px 15px;
        cursor: pointer;
        font-family: 'Arial', sans-serif;
        font-size: 14px;
        border-radius: 5px;
        margin-right: 10px;
    }

        .cookie-buttons .btn:hover {
            opacity: 0.9;
        }

.btn-preferences {
    background-color: transparent;
    color: #ffa500;
    border: 1px solid #ffa500;
}

    .btn-preferences:hover {
        background-color: #ffa500;
        color: white;
    }

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

    .close-btn:hover {
        opacity: 0.8;
    }

/* Responsiveness */
@media (max-width: 768px) {
    .cookie-content p {
        font-size: 12px;
    }

    .cookie-buttons .btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Modal Styling */
.cookie-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

    .modal-content h2 {
        margin-top: 0;
    }

    .modal-content label {
        font-family: 'Arial', sans-serif;
        font-size: 16px;
        margin: 10px 0;
        display: block;
    }

    .modal-content .btn-save {
        background-color: #ffa500;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        margin-top: 20px;
    }

        .modal-content .btn-save:hover {
            background-color: #e69500;
        }
/* Styling for the buttons */
.cookie-actions {
    display: flex;
    justify-content: space-between;
}

.btn-reject {
    background-color: #d9534f; /* Red background for reject */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

    .btn-reject:hover {
        background-color: #c9302c; /* Darker red on hover */
    }
