/**
 * Blocked Cookie Content Placeholder - Frontend Styles
 */

/* Wrapper voor geblokkeerde content */
.cccb-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

/* Placeholder overlay */
.cccb-placeholder {
    position: relative;
    width: 100%;
    background: #f8f8f8;
    border: 2px solid #ddd;
    border-radius: 4px;
    min-height: 200px;
}

/* Placeholder with thumbnail background */
.cccb-placeholder.cccb-has-thumbnail {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: #333;
}

.cccb-placeholder.cccb-has-thumbnail .cccb-content {
    background: rgba(248, 248, 248, 0.95);
    border-radius: 4px;
    max-width: 500px;
    margin: 0 auto;
}

/* Content binnen placeholder */
.cccb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
}

/* Icon */
.cccb-icon {
    margin-bottom: 15px;
    color: #666;
}

.cccb-icon svg {
    width: 48px;
    height: 48px;
}

/* Titel */
.cccb-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

/* Bericht */
.cccb-message {
    margin: 0 0 20px 0;
    color: #666;
    max-width: 400px;
    line-height: 1.5;
}

/* Settings knop */
.cccb-settings-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff !important;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cccb-settings-btn:hover {
    background: #005a87;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .cccb-content {
        padding: 20px;
    }
    
    .cccb-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .cccb-title {
        font-size: 16px;
    }
    
    .cccb-message {
        font-size: 13px;
    }
    
    .cccb-settings-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Dark mode ondersteuning */
/* @media (prefers-color-scheme: dark) {
    .cccb-placeholder {
        background: #2d2d2d;
        border-color: #444;
    }
    
    .cccb-icon {
        color: #aaa;
    }
    
    .cccb-title {
        color: #eee;
    }
    
    .cccb-message {
        color: #bbb;
    }
} */

/* Animaties */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cccb-placeholder {
    animation: fadeIn 0.3s ease;
}
