body {
    font-family: Arial, sans-serif;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-popup-content {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-popup h2 {
    margin-top: 0;
}

.cookie-options label {
    display: block;
    margin: 10px 0;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#accept-all {
    background-color: #28a745;
    color: white;
}

#save-settings {
    background-color: #007bff;
    color: white;
}
