#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 1001;
    display: none; /* Hidden by default */
    font-size: 14px;
    border-top: 1px solid #444;
}

#cookie-consent-banner p {
    margin: 0;
    margin-bottom: 10px;
}

#cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

#cookie-consent-banner .cookie-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#cookie-consent-banner .btn-accept {
    background-color: #4CAF50;
    color: white;
}

#cookie-consent-banner .btn-decline {
    background-color: #f44336;
    color: white;
}

#cookie-consent-banner .btn-settings {
    background-color: #555;
    color: white;
}

#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
}

#cookie-settings-modal .modal-content {
    background-color: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

#cookie-settings-modal h2 {
    margin-top: 0;
}

#cookie-settings-modal .cookie-category {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
}

#cookie-settings-modal .cookie-category label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#cookie-settings-modal .cookie-category p {
    font-size: 13px;
    margin-top: 5px;
    color: #ccc;
}

#cookie-settings-modal .toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

#cookie-settings-modal .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#cookie-settings-modal .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

#cookie-settings-modal .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

#cookie-settings-modal input:checked + .slider {
    background-color: #4CAF50;
}

#cookie-settings-modal input:disabled + .slider {
    background-color: #555;
    cursor: not-allowed;
}

#cookie-settings-modal input:checked + .slider:before {
    transform: translateX(26px);
}

#cookie-settings-modal .modal-actions {
    text-align: right;
    margin-top: 20px;
}
