.vtr-container {
    background-color: transparent;
    display: inline-block;
    font-size: 16px;
}

.vtr-count {
    font-weight: bold;
}

/* Estilos predefinidos */
.vtr-estilo-padrao {
    border: 1px solid #e0e0e0;
}

.vtr-estilo-banner {
    width: 100%;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.vtr-estilo-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: vtr-popup-entrada 0.5s ease;
}

@keyframes vtr-popup-entrada {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.vtr-estilo-notificacao {
    position: relative;
}

.vtr-estilo-notificacao:before {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.vtr-estilo-minimalista {
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0.8;
}

/* Preview em configurações admin */
.vtr-estilo-preview {
    margin-top: 10px;
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}