.style-form{
    justify-content:space-around;
    width: 100%;
}
.adminModif-style{
    height: 12%;
    width:100%;
}

.linkStyle{
    border-radius: 10px;
    border:solid 2px black;
    font-size:17px;
    font-weight:500 ;
    color: black;
    background-color: #4B30B5;
    text-decoration: none;
    width:70%;
    height:100%;
}

.containerWidth{
    width:100%;
    padding:20px;
}

.label_user{
    border: solid 1px black;
    background-color: hsl(252, 58%, 45%,0.7);
    border-radius: 5px;
}

.logo-modif{
    height:20px;
    width:20px;
}

.table-modif{
    width:100%;
    table-layout: fixed;
}


.table-modif :last-child td{
    width: 30px;
}
.table-modif2{
    width:50%;
    margin: 20px;
    table-layout: fixed;
}
.linkStyle2{
    border-radius: 10px;
    border:solid 2px black;
    font-size:17px;
    font-weight:500 ;
    color: black;
    background-color: #4B30B5;
    text-decoration: none;
    width:15%;
    height:100%;
}
.linkStyle3{
    border-radius: 10px;
    border:solid 2px black;
    font-size:17px;
    font-weight:500 ;
    color: black;
    background-color: #4B30B5;
    text-decoration: none;
    width:30%;
    height:50%;
}

.linkStyle4{
    border-radius: 15px;
    border:solid 2px black;
    font-size:17px;
    font-weight:500 ;
    color: black;
    background-color: #4B30B5;
    text-decoration: none;
    width:30%;
    height:100%;
    padding:10px;

}
.table-modif2 {
    width: 100%;
    border-collapse: collapse;
}
.table-modif3{
    width:80%;
    border-color: collapse;

}
.table-modif3 td {
    border: 1px solid #ddd;
    padding: 8px;
}

.table-modif3 input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.table-modif2 td {
    border: 1px solid #ddd;
    padding: 8px;
}

.table-modif2 input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Pour le header du tableau */
.text-center {
    text-align: center;
    font-weight: bold;
    background-color: #f5f5f5;
}
.circle-arrow:hover{
    background-color: #4B30B5;
}

/* Conteneur des liens */
.links-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: rgba(138, 43, 226, 0.5);
    border-radius: 10px;
    margin: 20px;
}

/* Chaque div contenant un lien */
.link-item {
    text-align: center;
    flex: 1;
}

/* Styles des liens */
.link {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Effet de survol des liens */
.link:hover {
    background-color: rgba(138, 43, 226, 0.8);
}
.pageContainer {
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: stretch;
}

/* Largeur fixe du header */
header {
  width: 120px;
  min-width: 120px;
  background-color: #343a40;
  color: white;
  box-sizing: border-box;
  height:auto;
}

/* Contenu à droite */
.admin-panel-container {
  flex: 1; /* prend tout l’espace restant */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
}

/* Boîte centrée */
.admin-center-box {
  text-align: center;
}

.dashboard-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.dashboard-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.dashboard-links a {
  padding: 15px 25px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.back-arrow {
  position: absolute;
  top: 20px;
  left: 140px; /* ajusté en fonction de la largeur de ton header */
  font-size: 1.2rem;
  text-decoration: none;
  color: #343a40;
  font-weight: bold;
  transition: color 0.2s ease;
}

.back-arrow:hover {
  color: #007bff;
}