.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 20px;
    color: #fff;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    color: #333;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content h2 {
    margin: 0 0 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.cookie-categories {
    margin: 20px 0;
}

.cookie-category {
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 15px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.category-details {
    margin-top: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    padding: 15px;
}

.category-details table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.category-details th,
.category-details td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.category-details th {
    font-weight: 600;
    color: #333;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.btn-details {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    color: #666;
}

.btn-details:hover {
    background: #f5f5f5;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-color-dark);
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.cookie-info {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.cookie-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 20px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin: 5px 0;
    }

    .category-details table {
        display: block;
        overflow-x: auto;
    }
} 