/* Sistema Gestione Formulari Online - Stili CSS */

body {
    font-family: Arial, sans-serif;
    padding-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #337ab7;
    box-shadow: 0 0 5px rgba(51, 122, 183, 0.3);
}

.btn {
    margin-right: 5px;
}

.panel {
    margin-bottom: 20px;
}

.table {
    margin-bottom: 0;
}

/* Form pubblico - stili personalizzati */
#public-form .form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

#public-form .form-control {
    transition: all 0.3s ease;
}

#public-form .form-control:focus {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(51, 122, 183, 0.5);
}

/* Debug box */
.debug-box {
    font-size: 12px;
}

.debug-content pre {
    font-size: 11px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .debug-box {
        width: 90% !important;
        right: 5% !important;
    }
}
