/* Existing banner styles */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}
.cookie-bar button {
    margin: 0 5px;
    padding: 5px 10px;
    background: #6f64e7;
    color: #fff;
    border: none;
    cursor: pointer;
}
.cookie-bar button:hover {
    background: #5243e6;
}
.cookie-bar a {
    color: #fff;
    text-decoration: underline;
}

/* New styles for cookie settings page */
/* Main container */
.cookie-consent-groups {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Main Heading */
.cookie-consent-groups h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
}


.cookie-group {
    border: 1px solid #e5e5e5;
    padding: 25px;
    margin: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* Cookie Group Title */
.cookie-group h2 {
    font-size: 20px;
    color: #30343f;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Cookie descriptions */
.cookie-group p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Individual Cookie Items */
.cookie-group ul {
    list-style-type: none;
    padding-left: 0;
}

.cookie-group ul li {
    margin-bottom: 8px;
    color: #555;
}

.cookie-group ul li strong {
    color: #333;
    margin-right: 5px;
}

/* Accept and Decline buttons */
button.cookie-accept,
button.cookie-decline {
    padding: 8px 15px;
    margin-right: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button.cookie-accept {
    background-color: #6f64e7;
    color: #fff;
}

button.cookie-accept:hover {
    background-color: #5243e6;
}

button.cookie-decline {
    background-color: #737272;
    color: #fff;
}

button.cookie-decline:hover {
    background-color: #636363;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .cookie-consent-groups {
        margin: 20px;
        padding: 20px;
    }

    .cookie-consent-groups h1 {
        font-size: 26px;
    }

    .cookie-group h2 {
        font-size: 18px;
    }

    button.cookie-accept,
    button.cookie-decline {
        font-size: 13px;
        padding: 7px 12px;
    }
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}

.cookie-table th {
    text-align: left;
    font-weight: 600;
    color: #222;
    padding: 10px 0;
    width: 35%;
}

.cookie-table td {
    color: #555;
    padding: 10px 0;
    width: 65%;
    border-bottom: 1px solid #eee;
}

/* Accepted/Declined indicators */
.cookie-group-actions {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Status tags */
.cookie-consent-accepted,
.cookie-consent-declined {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    display: inline-block;
}

.cookie-consent-accepted {
    color: #fff;
    background-color: #6f64e7;
}

.cookie-consent-declined {
    color: #fff;
    background-color: #636363;
}

