
#gp-form, #gp-ticket-price-form {
    background: #2a2c2c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: 20px auto;
    text-align: left;
}

/* Personnalisation des champs de formulaire */
.form-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Personnalisation des boutons */
.submit-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    background-color: #28a745;
}

.submit-btn:hover {
    background-color: #218838;
}


#gp-reset {
    background-color: #dc3545;
    margin-top: 10px;
	text-align: center;
	margin:auto;
	display: block;
}

#gp-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#gp-table td {
    padding: 3px 6px; /* Réduction du padding pour minimiser l'espace */
    border: 1px solid #ddd;
    text-align: center;
    background-color: #2a2c2c;
    white-space: nowrap; /* Empêche le contenu de passer à la ligne */
}


#gp-table th {
	 padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: #214165;
    color: white;
}
/* Style spécifique pour la colonne "Actions" */
td.actions {
  display: flex;
  justify-content: space-evenly; /* Répartit l'espace entre les boutons */
  align-items: center; /* Aligne les boutons au centre */
}

/* Optionnel : style pour les boutons */
td.actions button {
  margin: 0 5px; /* Un peu d'espace entre les boutons */
  
}

#gp-table .gp-delete {
    background-color: #dc3545;
	padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#gp-table .gp-add-tickets {
    background-color: #007bff;
	padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#gp-ticket-price-form button {
    background-color: #6f42c1;
	padding: 10px 15px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Styles pour le formulaire et le tableau des lots */
#add-lot-form {
    background: #2a2c2c;
	color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-bottom: 20px;
	margin-left: auto;
    margin-right: auto;
    text-align: left;
}

#add-lot-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

#add-lot-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#add-lot-form button {
    background: #28a745;
    color: white;
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none;
}

#lots-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#lots-table th, #lots-table td {
    border: 1px solid #ddd;
	background-color: #2a2c2c;
	color: #fff;
    padding: 8px;
    text-align: left;
}

#lots-table th {
    background-color: #214165;
	color: #fff;
}

#lots-table .delete-lot {
    padding: 5px 5px;
    font-size: 14px;
    color: #fff;
    background-color: #a80710 !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#lots-table .delete-lot:hover {
    background-color: #c0001a !important;
}

.add-lot {
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  margin-left: auto;
  margin-right: auto;
}
.actuel-lot {
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}

#tirage-au-sort {
    padding: 20px;
    border-radius: 10px;
}

#top-vendeurs-table th {
    border: 1px solid #ddd;
	background-color: #214165;
    padding: 8px;
    text-align: left;
}
#top-vendeurs-table td {
	background-color: #2a2c2c;
}

.top-vendeurs-title h3 {
    text-align: center;
    margin-bottom: 20px; /* Espacement optionnel */
}

#top-vendeurs-table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
}
