body {
    font-family: 'Titillium Web', sans-serif !important;
}

.hero {
    height: 50vh;
    /* background: url("../static/configurazione_2_colori.png") center/cover no-repeat; */
    background-size: 80%;
    color: white;
}

.custom-table {
    border-collapse: separate; /* Allows border-radius to work */
    border-spacing: 0; /* Removes extra spacing */
    width: 100%;
    border: 1px solid black; /* Ensures border around table */
    border-radius: 10px; /* Rounds the corners */
    overflow: hidden; /* Ensures corners stay rounded */
}

.custom-table a {
    text-decoration: none;
}
.custom-table th,
.custom-table td {
    border: 1px solid black !important;
    padding: 5px;
    text-align: center;
}

.custom-table th {
    background-color: #1525d2 !important;
    color: white !important;
}

/* Ensuring rounded corners for the first and last header cells */
.custom-table th:first-child {
    border-top-left-radius: 10px;
}

.custom-table th:last-child {
    border-top-right-radius: 10px;
}

.custom-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.custom-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
