/**
 * Estilos para o frontend do plugin Liveshop
 *
 * @package Liveshop
 */

/* Container principal */
.liveshop-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Container do vídeo */
.liveshop-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    overflow: hidden;
}

.liveshop-video-container iframe,
.liveshop-video-container object,
.liveshop-video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Container de mensagens */
.liveshop-messages-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Permite clicar no vídeo através do container */
    z-index: 10;
}

/* Mensagem individual */
.liveshop-message {
    position: absolute;
    top: 50%;
    left: 20px; /* Posicionado na lateral esquerda */
    transform: translateY(-50%); /* Apenas centraliza verticalmente */
    width: 30%; /* Largura reduzida */
    max-width: 300px;
    pointer-events: auto; /* Permite interação com a mensagem */
    z-index: 20;
    /* Animação removida */
}

.liveshop-message-inner {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Cabeçalho da mensagem */
.liveshop-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.liveshop-message-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.liveshop-message-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.liveshop-message-close:hover {
    opacity: 1;
}

/* Conteúdo da mensagem */
.liveshop-message-content {
    font-size: 14px;
    line-height: 1.5;
}

.liveshop-message-content a {
    color: #4db2ec;
    text-decoration: none;
    transition: color 0.2s;
}

.liveshop-message-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Animações removidas */

/* Responsividade */
@media screen and (max-width: 768px) {
    .liveshop-message {
        width: 40%; /* Um pouco mais largo em telas menores */
        left: 10px; /* Mais próximo da borda em telas menores */
    }
    
    .liveshop-message-title {
        font-size: 16px;
    }
    
    .liveshop-message-content {
        font-size: 13px;
    }
}

/* Para telas muito pequenas */
@media screen and (max-width: 480px) {
    .liveshop-message {
        width: 60%; /* Ainda mais largo em telas muito pequenas */
        left: 5px;
    }
}
