/* Illuminate Cookie Notice Styling */

/* Cookie Banner */
#dwCookieBanner {
    z-index: 1030;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal Header */
.modal-header h2 {
    margin: 0;
    flex: 1;
}

/* Cookie Modal Body */
.modal-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body p {
    margin: 0;
}

.modal-body > p:first-of-type {
    margin-bottom: 1rem;
}

.modal-body a {
    color: var(--primary, #0066cc);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.modal-body a:last-of-type {
    margin-bottom: 0;
}

/* Cookie Categories Section */
.cookie-categories {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.cookie-category-item {
    margin-bottom: 1rem;
}

.cookie-category-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-category-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-category-checkbox:disabled {
    cursor: not-allowed;
}

/* Cookie Modal Footer */
.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Cookie Buttons */
.cookie-btn {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    font-weight: 500;
}

.cookie-btn-decline {
    background: #f0f0f0;
    border: 1px solid #ddd;
    color: #333;
}

.cookie-btn-decline:hover {
    background: #e8e8e8;
}

.cookie-btn-customize {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    font-weight: 600;
}

.cookie-btn-customize:hover {
    background: #f5f5f5;
}

.cookie-btn-accept {
    background: var(--primary, #0066cc);
    color: white;
    font-weight: 600;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark, #0052a3);
}

.cookie-btn-hidden {
    display: none;
}

