.cookie-consent {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    display: none;
}

.cookie-consent button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cookie-consent .accept-btn {
    background-color: #28a745;
    color: white;
}

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

.cookie-consent a {
    color: #007bff;
    text-decoration: none;
}

.reset-consent {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: #ffc107;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: white;
    display: none;
}