/**
 * Modal Custom CSS - Studio Vogt Theme
 * Estilos customizados para modal seguindo padrões Bulma
 */

/* Suporte ao is-clipped para modal conforme documentação Bulma */
html.is-clipped {
    overflow: hidden !important;
}

/* Garantir hierarquia correta de z-index */
.modal {
    z-index: 1000;
}

.modal-background {
    z-index: 1001;
}

.modal-content,
.modal-close {
    z-index: 1002;
}

/* Menu centralizado no modal conforme documentação Bulma */
.modal .modal-content {
    text-align: center;
}

.modal .menu {
    display: inline-block;
    text-align: left;
}

.modal .menu-list a {
    color: white;
    padding: 0.75rem 1rem;
    display: block;
}

.modal .menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Menu lateral customizado */
.modal .box {
    background-color: #333;
    color: white;
}

.modal .menu-label {
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal .menu-list a {
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal .menu-list a:hover {
    background-color: #555;
    color: white;
}

.modal .delete {
    background-color: rgba(255,255,255,0.2);
}

.modal .delete:hover {
    background-color: rgba(255,255,255,0.3);
}
