.cookies-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 3rem 0;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
}

.cookie-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-card.required {
    border-color: #28a745;
    background: #f0fff4;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cookie-icon.required {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}
.cookie-icon.analytics {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.cookie-icon.ads {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.cookie-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.cookie-details ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cookie-details li {
    margin-bottom: 0.5rem;
}

.action-buttons {
    position: sticky;
    bottom: 20px;
    z-index: 100;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.info-box {
    background: linear-gradient(135deg, #1c0a76 0%, #ce9f41 100%);
    color: #2d3748;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.history-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #667eea;
}
