.embed-privacy-noscript-warning {
    max-width: 560px;
    margin: 20px auto;
}
.wp-block-embed__wrapper.embed-privacy-empty::before {
  content: none !important;
  display: none !important;
  padding-top: 0 !important;
}
/* Embed Privacy Placeholder Styling */
.embed-privacy-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.embed-privacy-placeholder.consent-declined {
    border-color: #333;
    background: #e8e3ff;
}

.embed-privacy-content {
    max-width: 400px;
}

.embed-privacy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6c757d;
    max-width: 48px;    
}

.embed-privacy-placeholder h3 {
    color: #495057;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.embed-privacy-placeholder p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.embed-privacy-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.embed-privacy-accept, .embed-privacy-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.embed-privacy-accept {
    background-color: #28a745;
    color: white;
}

.embed-privacy-accept:hover {
    background-color: #218838;
}

.embed-privacy-decline {
    background-color: #6c757d;
    color: white;
}

.embed-privacy-decline:hover {
    background-color: #545b62;
}

.embed-privacy-remember {
    margin-right: 5px;
}

/* Cookie Manager Styling */
.embed-privacy-manager {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.embed-privacy-manager.hidden {
    display: none;
}

.embed-privacy-manager-icon {
    width: 48px;
    height: 48px;
    /*background: #007cba;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.15);*/
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    font-size: 48px;
}

.embed-privacy-manager-icon:hover {
    /*background: #005a87;*/
    transform: scale(1.05);
}

.embed-privacy-manager-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.embed-privacy-manager-panel.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.embed-privacy-manager-panel h4 {
    margin: 0;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: #333;
}

.embed-privacy-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding:0;
}

.embed-privacy-close-btn:hover {
    color: #333;
}

#embed-consent-list {
    padding: 10px 20px;
}

.consent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.consent-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: #333;
}

.consent-status {
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.consent-status.allowed {
    background: #d4edda;
    color: #155724;
}

.consent-status.denied {
    background: #f8d7da;
    color: #721c24;
}

.toggle-consent {
    background: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.toggle-consent:hover {
    background: #005a87;
}

.embed-privacy-clear-btn {
    width: 100%;
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    font-weight: 500;
}

.embed-privacy-clear-btn:hover {
    background: #c82333;
}

/* Template tag verbergen */
.embed-original {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .embed-privacy-manager {
        right: 10px;
        bottom: 10px;
    }
    
    .embed-privacy-manager-panel {
        width: 280px;
    }
    
    .embed-privacy-placeholder {
        padding: 20px 15px;
    }
    
    .embed-privacy-buttons {
        flex-direction: column;
    }
    
    .embed-privacy-accept, .embed-privacy-decline {
        width: 100%;
        max-width: 200px;
    }
}