body {
    font-family: 'Segoe UI', 'Orbitron', Arial, sans-serif;
    background: linear-gradient(135deg, #2a1e3d 0%, #181c24 100%);
    color: #fff;
    margin: 0;
    padding: 0;
}
.login-container {
    background: #23283aee;
    max-width: 800px;
    margin: 40px auto;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px #0008;
}
.admin-container {
    background: #23283aee;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px #0008;
}
.fivem-theme h2 {
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 2px;
    color: #9d80d8;
    text-shadow: 0 2px 8px #9d80d855, 0 0 2px #000;
    display: flex;
    align-items: center;
    gap: 10px;
}
h3 {
    color: #9d80d8;
}
input, select, button {
    padding: 10px 12px;
    margin: 6px 0;
    border-radius: 8px;
    border: none;
    font-size: 1em;
}
input, select {
    width: 100%;
    box-sizing: border-box;
    background: #181c24;
    color: #fff;
}
button {
    background: #9d80d8;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-weight: bold;
    border: none;
}
button:hover {
    background: #bba0e6;
    color: #181c24;
    transform: scale(1.05);
}
.up-btn {
    background: #bba0e6;
    color: #23283a;
    margin-left: 2px;
}
.up-btn:hover {
    background: #9d80d8;
    color: #fff;
}
.down-btn {
    background: #6d4e99;
    color: #fff;
    margin-left: 2px;
}
.down-btn:hover {
    background: #9d80d8;
    color: #fff;
}
.delete-btn {
    background: #ff4d4d;
    color: #fff;
    margin-left: 2px;
}
.delete-btn:hover {
    background: #b30000;
}
.grad-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 0.95em;
    box-shadow: 0 2px 8px #0003;
    letter-spacing: 1px;
    background: #9d80d8 !important;
    color: #fff !important;
    border: none !important;
}
.grad-helper-in-teste, .grad-helper, .grad-moderator, .grad-administrator, .grad-supervisor, .grad-scripter, .grad-fondator {
    background: #9d80d8 !important;
    color: #fff !important;
    border: none !important;
}
.error {
    background: #ff4d4d;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-align: center;
}
.logout-btn {
    float: right;
    background: #9d80d8;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: -40px;
    font-weight: bold;
    box-shadow: 0 2px 8px #0003;
}
.logout-btn:hover {
    background: #bba0e6;
    color: #23283a;
}
.add-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 30px;
}
.add-form input, .add-form select {
    width: 100%;
}
.add-form button {
    grid-column: span 2;
}
.fivem-table {
    width: 100%;
    border-collapse: collapse;
    background: #23283aee;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #0005;
}
.fivem-table th, .fivem-table td {
    border: 1px solid #2c3142;
    padding: 10px 6px;
    text-align: center;
}
.fivem-table th {
    background: #2a1e3d;
    color: #9d80d8;
    font-size: 1.05em;
    letter-spacing: 1px;
}
.fivem-table tr:nth-child(even) {
    background: #2a1e3d;
}
.fivem-table tr:hover {
    background: #9d80d825;
    transition: background 0.2s;
}
.fivem-table .grad-header {
    background: #2a1e3d !important;
    color: #9d80d8 !important;
    font-weight: bold;
    text-align: left;
    font-size: 1.1em;
}
@media (max-width: 900px) {
    .admin-container, .login-container { max-width: 98vw; padding: 10px; }
    .fivem-table th, .fivem-table td { font-size: 0.95em; padding: 6px 2px; }
} 

.grad-badge.grad-fondator { background: #ff0000 !important; color: #fff !important; }
.grad-badge.grad-scripter { background: #ff3400 !important; color: #fff !important; }
.grad-badge.grad-supervisor { background: #d17421 !important; color: #fff !important; }
.grad-badge.grad-administrator { background: #c600ff !important; color: #fff !important; }
.grad-badge.grad-moderator { background: #0092c6 !important; color: #fff !important; }
.grad-badge.grad-helper { background: #49ae00 !important; color: #fff !important; }
.grad-badge.grad-helper-in-teste { background: #b3b3b3 !important; color: #23283a !important; } 