/* CSS Document */

select {
    background-color: #fff;
}

.st{
    border-top: solid 1px #E9E8E8;
}

.sb{
    border-bottom: solid 1px #E9E8E8;
}

.load1{
    width: 20px !important;
    height: 13px !important;
    background: url("/img/ajax-loaders/ajax-loader-1.gif"); 
    background-repeat: no-repeat;
}

.load2{
    width: 45px !important;
    height: 13px !important;
    background: url("/img/ajax-loaders/ajax-loader-4.gif"); 
    background-repeat: no-repeat;
}

ul .unread i{
    color: #034F1C !important;
}

@media (min-width: 900px) {
    .notif19{
        margin-top: 15px !important;
        margin-right: 25% !important;
    }
}
@media (max-width: 900px) {
    .notif19{
        margin-top: 12px !important;
        margin-right: 89% !important;
    }     
}

.imageOpener {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(135, 206, 235, 0.5); /* Sky blue with 50% opacity */
  z-index: 9999; /* Make sure it's on top */
  display: none; /* Hide by default */
}

/* Example class to show it   */
.imageOpener.active {
  display: block;
  overflow: hidden;
}
 

.imageOpener #left, .imageOpener #right{
    
    background-color: aqua;
}

.imageOpener #photo{
    
    background-color: red;
}
.imageOpener #detail{
    
    background-color: orangered;
}

.imageOpener #detail, .imageOpener #photo {
    height: 92vh;
}

.imageOpener .box-content{
    width: 99%;
    height: 99vh;
    background-color: darkslategray;
}


.hide {
    display: none !important; 
}

.link {
    cursor: pointer;
}



/*liste des images dans l'album*/
.galerie {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
}

.galerie .photo {
      height: 150px;
      width: 150px;
      display: inline-flex;
      border: 3px solid #fff;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
      border-radius: 6px;
      overflow: hidden;
      transition: transform 0.2s ease-in-out;
}

.galerie .photo:hover {
      transform: scale(1.05);
    cursor: pointer;
}

.galerie .photo img {
      height: auto;
      width: 100%;
      display: block;
}


/*liste des album*/
.albums {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
}

.album {
      width: 170px;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      text-align: center;
      z-index: 1000; 
}

.album:hover {
      transform: scale(1.05);
      cursor: pointer;
}

.album img {
      width: 100%;
      height: auto;
      max-height: 170px;
      object-fit: cover;
      display: block;
}

.album-title {
      padding: 10px;
      font-size: 0.95rem;
      color: #555;
}


.align-left {
  display: block;
  margin-right: auto;
  margin-left: 0;
}

.align-center {
  display: block;
  margin: 0 auto;
}

/*tinymce*/
    img.img-left { float: left; margin: 0 10px 0 0; }
    img.img-center { display: block; margin: 0 auto; }
    img.img-right { float: right; margin: 0 0 0 10px; }


/*Error page */
    .error-container {
      text-align: center;
      padding: 40px;
      background-color: white;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .error-code {
      font-size: 120px;
      font-weight: bold;
      color: #dc3545;
    }

    .error-message {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .btn-home {
      padding: 10px 20px;
      font-size: 18px;
    }

