/* Style per la Dashboard Personale */
.sl-user-dashboard {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.sl-user-dashboard h2 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sl-dashboard-section {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sl-dashboard-section h3 {
    margin-top: 0;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Form di registrazione */
.sl-dashboard-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sl-dashboard-section label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.sl-dashboard-section input[type="text"],
.sl-dashboard-section input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.sl-dashboard-section input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.sl-dashboard-section input[type="submit"]:hover {
    background-color: #005a87;
}

/* Tabella dei BOT */
.sl-bots-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.sl-bots-table th,
.sl-bots-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.sl-bots-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.sl-bots-table tr:hover {
    background-color: #f5f5f5;
}

.sl-bots-table a {
    color: #0073aa;
    text-decoration: underline;
    padding: 5px;
}

.sl-bots-table a:hover {
    color: #005a87;
}

/* Messaggi di feedback */
.updated {
    background-color: #e8f5e8;
    color: #388e3c;
    padding: 10px;
    border-left: 4px solid #388e3c;
    margin-bottom: 15px;
    border-radius: 4px;
}

.error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    border-left: 4px solid #c62828;
    margin-bottom: 15px;
    border-radius: 4px;
}
