/* Estilo dos quadrados */
.option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;   /* Aumentar a largura */
    height: 100px;   /* Aumentar a altura */
    border-width: 2px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    margin: 0 5px;  /* Reduzir o espaçamento entre as caixas */
}

    /* Estilo do ícone */
.option-box .icon {
    font-size: 2.5rem;  /* Aumentar o tamanho do ícone */
    margin-bottom: 8px;
    color: #999;
}

.option-box .option-title {
    font-weight: bold;
    margin: 0;
    color: #999;
}

/* Esconder completamente o input radio */
.btn-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Estilo do quadrado quando selecionado */
input[type="radio"]:checked + .option-box {
    border-color: #626262;
    background-color: #e0f0ff;
}

input[type="radio"] + .option-box{
    border-color: #999;
    background-color: #fff;
}


.dropdown.bootstrap-select .dropdown-menu {
    inset: 10px auto auto 0 !important;
}

.dropdown-menu:not(.show) {
    display: none !important;
}

.jNQrgE {
    display: none;
}


.template:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra no hover */
}

.template.selected {
    border: 2px solid #007bff; /* Borda azul para template selecionado */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6); /* Sombra azul */
}

.template-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7); /* Fundo preto translúcido */
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: 1rem;
}
