/* Verificatie Badge Styling */
.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    position: relative;
    z-index: 10;
}

.verification-badge.badge-sm {
    font-size: 0.75rem;
}

.verification-badge.badge-md {
    font-size: 1rem;
}

.verification-badge.badge-lg {
    font-size: 1.25rem;
}

.verification-badge.premium-verified {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    padding: 2px 6px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.verification-badge.verified {
    background: rgba(25, 135, 84, 0.1);
    padding: 2px 6px;
    border-radius: 12px;
}

/* Card overlay voor verificatie status */
.advertentie-card {
    position: relative;
}

.advertentie-card .verification-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effect voor verified cards */
.advertentie-card.verified-advertiser {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.advertentie-card.verified-advertiser:hover {
    border-color: #198754;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
    transform: translateY(-2px);
}

.advertentie-card.premium-verified-advertiser:hover {
    border-color: #ffc107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* List view badges */
.advertentie-list-item .verification-badge {
    margin-left: 8px;
}

/* Tooltip styling */
.tooltip.verification-tooltip .tooltip-inner {
    background-color: #198754;
    color: white;
    font-weight: 500;
}

.tooltip.premium-verification-tooltip .tooltip-inner {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: white;
    font-weight: 500;
}

/* Animation voor badge */
@keyframes verificationPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.verification-badge.animated {
    animation: verificationPulse 2s ease-in-out infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .verification-badge.badge-md {
        font-size: 0.875rem;
    }
    
    .verification-badge.badge-lg {
        font-size: 1rem;
    }
    
    .advertentie-card .verification-overlay {
        top: 4px;
        right: 4px;
        padding: 2px 6px;
    }
}
