.profile-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 30px 0;
}

/* HEADER */
.profile-header {
    background: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
    color: white;
}
.profile-header-content {
    
    gap: 15px;
    margin-bottom: 15px;
    background: radial-gradient(
      circle at 0% 0%,
      #d47ce8 0%,
      #a44bd5 30%,
      #6a24b8 55%,
      #2b0e58 90%
    );
    
    border-radius: 20px;
    padding: 20px;
}

.avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    
}

.email {
    margin: 5px 0 15px;
    color: #e0e0e0;
}

.role {
    display: inline-block;
    background: #d47ce8;
    color: white;
    font-weight: bold;
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
}


.events-section {
    margin-bottom: 20px;
}


/* admin */
/* TABLES */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

thead {
    color: white;
    background: radial-gradient(
      circle at 0% 0%,
      #d47ce8 0%,
      #a44bd5 30%,
      #6a24b8 55%,
      #2b0e58 90%
    );
}

thead th {
    padding: 12px;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tbody tr {
    border-bottom: 1px solid #eee;
    
}

tbody td {
    padding: 12px;
    font-weight: 100;
  
}



/* Alternance de lignes */
tbody tr:nth-child(even) {
    background: #fafafa;
}

/* LIENS D'ACTIONS */
td a {
    margin-right: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

td a:hover {
    text-decoration: underline;
}
/* .liste {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
} */

/* BOUTONS */
.btn-active{
    padding: 8px 14px;
    border: none;
    border-radius:20px;
    cursor: pointer;
    font-weight: bold;
    background: black;
    color: white;
    border: none
}

button {
    padding: 8px 14px;
    border: none;
    border-radius:20px;
    cursor: pointer;
    font-weight: bold;
    border:none;
}

.event-card img{
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.edit-btn {
    background-color: #2df569;
}

.edit-btn:hover {
    background-color: #20753a;

}

.delete-btn {
    background-color: #dc3545;
    color: #fff;
}
