/* Chemin du fichier: /public/css/premium-badge.css */

.premium-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    position: relative;
    top: 1px;
}

.premium-badge-icon {
    color: #FFC845;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.premium-badge-icon::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='%23FFC845' stroke='none'%3E%3Cpath d='M12 2l2.4 7.4h7.6l-6.2 4.5 2.4 7.4-6.2-4.5-6.2 4.5 2.4-7.4-6.2-4.5h7.6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.premium-badge-tooltip {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    position: absolute;
    z-index: 100;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
    pointer-events: none;
}

.premium-badge:hover .premium-badge-tooltip {
    visibility: visible;
    opacity: 1;
}