/* Stile principale per la Dashboard */
.gpb-dashboard {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.gpb-dashboard h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gpb-dashboard .saldo {
    font-size: 1.5em;
    margin-top: 20px;
}

.gpb-dashboard .positive {
    color: green;
}

.gpb-dashboard .negative {
    color: red;
}

.gpb-dashboard .button-primary {
    background-color: #2980b9;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.gpb-dashboard .button-primary:hover {
    background-color: #3498db;
}

.gpb-dashboard table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.gpb-dashboard table th, .gpb-dashboard table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.gpb-upload-form {
    background-color: #ecf0f1;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gpb-upload-form h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.gpb-upload-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.gpb-upload-form input[type="submit"] {
    background-color: #2980b9;
    color: white;
    font-size: 1.2em;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.gpb-upload-form input[type="submit"]:hover {
    background-color: #3498db;
}

/* Stile per il pulsante di eliminazione */
.gpb-dashboard a.button-primary {
    background-color: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
}

.gpb-dashboard a.button-primary:hover {
    background-color: #c0392b;
}
