/* ===== Stile APRILIA RACING ===== */

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    background: #111;
    color: #eee;
}

/* Header generico */
h1, h2 {
    color: #e30000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Container principale */
.container {
    width: 90%;
    max-width: 600px;
    margin: 60px auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border-left: 6px solid #e30000;
    box-shadow: 0 0 15px rgba(227, 0, 0, 0.3);
    text-align: center;
}

/* Input */
input {
    width: 85%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    outline: none;
    border-radius: 5px;
    background: #222;
    color: #fff;
    transition: 0.3s;
}

input:focus {
    border-color: #e30000;
}

/* Bottoni */
button {
    padding: 10px 24px;
    background: #e30000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #ff1919;
    box-shadow: 0 0 10px rgba(255, 20, 20, 0.5);
}

/* Tabelle GP */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(227, 0, 0, 0.25);
}

th {
    background: #e30000;
    padding: 12px;
    text-transform: uppercase;
}

td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

/* Icon buttons */
.btn-icon {
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-icon.edit {
    background: #0077cc;
}

.btn-icon.delete {
    background: #d9534f;
}

.btn-icon:hover {
    opacity: 0.8;
}
