/* Estilos para dispositivos móveis */
.mobile-device {
    max-width: 400px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.mobile-device .device-screen {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Estilos para visualizações desktop */
.desktop-wrapper {
    background: #f1f3f5;
    padding: 20px;
    border-radius: 8px;
}

.desktop-screen {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 10px solid #222;
    border-top-width: 30px;
    border-radius: 5px;
    position: relative;
}

.desktop-screen::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 5px;
}

/* Melhorias na navegação por tabs */
.nav-tabs .nav-link {
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid #0d6efd;
}

/* Estilo para os botões de seleção */
.btn-select-group {
    margin-bottom: 15px;
}

.btn-select-group .btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

/* Melhoria visual para os checkboxes */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}