@charset "UTF-8";

.custom-table tr td, .custom-table tr th {
  border-bottom: 1px solid #F4EDFE; 
}

.custom-table thead {
  background-color: #D1C4E9;
}

.custom-pagination {
  color:#AA95D3;
  font-size :12px;
  font-weight: bold;
}

.back_button {
  padding: 8px 16px;
  font-size: 12px;
  background-color: #542CA7;
  color:white;
  border: 0 none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.validation_button {
  padding: 8px 12px;
  font-size: 12px;
  background-color: #542CA7;
  color:white;
  border: 0 none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.accordion_local {
  background-color: #FBFBFB; /* à mettre en gris */
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordion_local .active, .accordion_local:hover {
  background-color: #F4EDFE;
}

.accordion_local:after {
  content: '\002B';
  color: #673ab7;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion_local .active:after {
  content: "\2212";
}

.panel {
  padding: 0 15px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.num-item {
  padding: 2px 6px;
  font-size: 12px;
  background-color: #D1B7FB;
  color:white;
  border: 0 none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.small_button {
    padding: 4px 10px;
    font-size: 12px;
    background-color: #542CA7;
    color:white;
    border: 0 none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

[disabled] {
    filter: opacity(0.5);
    pointer-events: none;
}

.feedback-icon {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
}

.selected {
  background-color: #EAE5F4;
}

.drag-area {
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: #EEE4FD;
  width: 40%; 
  height: 200px;
  margin: auto; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
  text-align: center; 
}

.drag-area:hover {
    background-color: #E2D2FC;
}

#file-list {
  list-style: none; 
  padding-left: 0; 
  margin: auto;
  width: fit-content; 
}

.file-item {
    text-align: left; 
    margin-bottom: 10px;
}


.reglo-success {
  color:#488A6B;
}


.reglo-failure {
  color:#D46565;
}

#right-panel {
  width: 400px;
  height: 100vh;
  right: -400px;
  top: 0;
  background-color: white;
  padding: 20px;
  z-index: 9999;
  border-left: 1px solid #522e92;
  border-radius: 8px 0 0 8px;
  transition: 0.2s;
  overflow-y: scroll;
  border-radius:0px;
}

#right-panel.open {
  right: 0;
}
