body {
    background: url('img/newyork.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Comic Neue', sans-serif;
    color: white;
    margin: 0;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #8B0000;
    padding: 20px;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    font-size: 3rem;
    text-shadow: 2px 2px 4px black;
}

.card, .table, .modal-content {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
}

.navbar {
    background-color: #8B0000;
    font-family: 'Comic Neue', sans-serif;
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    color: white !important;
    font-size: 1.8rem;
}

.navbar .nav-link {
    color: white !important;
}

.navbar .nav-link:hover {
    color: #ffd700 !important;
}

.btn-warning {
    background-color: #ffd700;
    color: black;
    border: none;
}

.btn-warning:hover {
    background-color: #e0c200;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1e3f0;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.02);
    border-color: #2980b9;
}

.card .card-title {
    color: #2c3e50;
}

.card .card-text {
    color: #555;
}

.btn-danger {
    background-color: #7ceef1;
    border: none;
}

.btn-danger:hover {
    background-color: #2bc0a0;
}

.table {
    background-color: rgb(133, 18, 209);
    border: 1px solid #1d1f20;
}

.table th {
    background-color: #2980b9;
    color: white;
}

.table td {
    vertical-align: middle;
}
/* Tabella stile moderno "contatti" */

.table {
    background-color: rgba(0, 0, 0, 0.75);
    border-collapse: separate;
    border-spacing: 0 8px;
    border: none;
    font-family: 'Comic Neue', sans-serif;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    color: white;
}

.table thead th {
    background-color: #8B0000;
    color: white;
    border: none;
    text-align: center;
}

.table tbody tr {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.table td {
    text-align: center;
    vertical-align: middle;
    border: none;
    padding: 12px 8px;
}


.modal-content {
    border: 2px solid #2980b9;
}
.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #218838;
}
.update-info {
    font-style: italic;
    color: rgb(160, 95, 95);
    padding-bottom: 20px;
}