



/* BEGIN FOR app and account page ? */

body {
  font-family: Arial, sans-serif;
  background-color: #fffdf8;
  margin: 0;
  padding: 0;
  color: #111;
}

header {
  text-align: center;
  padding: 1em;
  border-bottom: 1px solid #eee;
  position: relative;
}

.nav-left {
  position: absolute;
  left: 2em;
  top: 1em;
}

.logo-container img {
  height: 40px;
}

.sous-texte {
  font-size: 0.9em;
  color: #555;
  margin-top: 0.3em;
}

.main-nav {
  margin: 1em 0;
}

.main-nav a {
  margin: 0 0.8em;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

#sign-out {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

main {
  text-align: center;
  padding: 2em 1em;
}

h1 {
  font-size: 2.2em;
}

.upload-zone {
  background-color: #eaf1ff;
  padding: 2em;
  margin: 2em auto;
  width: 60%;
  border-radius: 10px;
}

.upload-zone .icons img {
  height: 40px;
  margin: 0 10px;
}

.upload-button {
  background-color: #333;
  color: white;
  border: none;
  padding: 0.8em 1.2em;
  margin: 1em 0;
  border-radius: 6px;
  cursor: pointer;
}

.status-box {
  margin: 1em auto;
  width: 60%;
  font-size: 0.95em;
  text-align: center;
  color: #444;
}

.documents-section {
  background: #fff;
  width: 80%;
  margin: 2em auto;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-top: 6px solid #2a62e0;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}

.page-count {
  font-weight: bold;
  color: #333;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

table th, table td {
  padding: 0.8em;
  text-align: left;
  border-bottom: 1px solid #eee;
}

table th {
  background-color: #f9f9f9;
  cursor: pointer;
}

table img {
  height: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}

.pagination a {
  padding: 0.5em 0.8em;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.pagination a.active {
  background-color: #333;
  color: white;
  border-color: #333;
}

footer {
  text-align: center;
  padding: 2em;
  color: #444;
  font-size: 0.9em;
}

footer img {
  height: 40px;
  margin-bottom: 1em;
}

/* END FOR app and account page ? */



/* BEGIN FOR SWITCH BUTTON in app select Tous les dossiers ou dossiers finalisés */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* END FOR SWITCH BUTTON in app select Tous les dossiers ou dossiers finalisés */



/* FOR UPLOAD ?? */
.hidden {
    display: none;
}


