/* Stili generali */
body {
    background-color: #f8f9fa;
}

.container-fluid {
    padding: 0 30px;
}

/* Stili per i tavoli */
.tavoli-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.tavolo {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tavolo-libero {
    background-color: #28a745;
    color: white;
}

.tavolo-occupato {
    background-color: #dc3545;
    color: white;
}

.tavolo-numero {
    font-size: 24px;
    font-weight: bold;
}

.tavolo-posti {
    font-size: 14px;
}

.tavolo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stili per le prenotazioni */
.list-group-item {
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Stili per i modali */
.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Stili responsive */
@media (max-width: 768px) {
    .tavolo {
        width: 80px;
        height: 80px;
    }
    
    .tavolo-numero {
        font-size: 20px;
    }
    
    .tavolo-posti {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .tavoli-container {
        gap: 10px;
        padding: 10px;
    }
    
    .tavolo {
        width: 70px;
        height: 70px;
    }
    
    .tavolo-numero {
        font-size: 18px;
    }
    
    .tavolo-posti {
        font-size: 11px;
    }
}