/* Styles généraux */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* Styles pour le tableau de bord */
.dashboard-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Styles pour les formulaires */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Styles pour les tables */
.table-container {
    overflow-x: auto;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Styles pour les invitations */
.invitation-preview {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    margin-bottom: 20px;
}

.qr-code-container {
    text-align: center;
    margin: 20px 0;
}

/* Styles pour la disposition des tables */
.table-layout {
    position: relative;
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 10px;
}

.event-table {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #0d6efd;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Styles pour les alertes et notifications */
.alert-custom {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Styles pour les boutons */
.btn {
    border-radius: 5px;
    padding: 8px 20px;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Styles pour les médias responsifs */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}