
  
 
  
  @media only screen and (max-width: 767.96px) {
    h1,
    .h1 {
      font-size: 3rem;
      line-height: 3.25rem;
    }
  }
  
  @media only screen and (max-width: 575.96px) {
    h1,
    .h1 {
      font-size: 2.5rem;
      line-height: 2.75rem;
    }
  }
  
  h2,
  .h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.25rem;
  }
  
  @media only screen and (max-width: 767.96px) {
    h2,
    .h2 {
      font-size: 2.5rem;
      line-height: 2.75rem;
      margin-left: 20px;
    }
  }
  
  @media only screen and (max-width: 575.96px) {
    h2,
    .h2 {
      font-size: 2rem;
      line-height: 2.25rem;
    }
  }
  
  h3,
  .h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.25rem;
  }
  
  @media only screen and (max-width: 575.96px) {
    h3,
    .h3 {
      font-size: 1.75rem;
      line-height: 2rem;
    }
  }
  
  h4,
  .h4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.75rem;
  }
  
  @media only screen and (max-width: 575.96px) {
    h4,
    .h4 {
      font-size: 1.25rem;
      line-height: 1.5rem;
    }
  }
  
  h5,
  .h5 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
  
  h6,
  .h6 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
  
  p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.1px;
    line-height: 1.8;
    color: #051922;
    margin: 0 0 1.25rem 0;
  }
  
  p:last-child {
    margin: 0;
  }
  
  .shop-banner .container h3 {
    color: #000;
  }
  .shop-banner .container .sale-upto {
    color: #000;
  }
  /* -----------------------------------------------------------------------------
  
  # All Common Styles
  
  ----------------------------------------------------------------------------- */

 /* -----------------------------------------------------------------------------
  
  #gallery control panel
  
  ----------------------------------------------------------------------------- */
  .grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    
}

.image-container {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.image-container img {
    width: 250px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.image-container input[type="checkbox"] {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: scale(1.5);
    z-index: 1;
}

.image-container.checked {
    background-color: rgba(0, 0, 0, 0.5);
}

.image-container.checked img {
    opacity: 0.5;
}
form {
    text-align: center;
    margin: 20px 0;
}

form input[type="file"] {
    margin-right: 10px;
}

form input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* صفحة add-avilabele */


.dashboard {
  display: flex;
  width: 100%;
}

.navbar {
  width: 200px;
  background-color: #2c3e50;
  padding: 20px;
  color: #ecf0f1;
}

.navbar ul {
  list-style: none;
  padding: 0;
}

.navbar ul li {
  padding: 10px 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #ecf0f1;
}

.navbar ul li a.active {
  font-weight: bold;
  color: #3498db;
}

.content {
  flex: 1;
  padding: 20px;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

  .container {
    position: relative;
  }
  .image-container {
    position: relative;
    display: inline-block;
    margin: 10px;
  }
  .image-container .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: scale(0);
  }
  .image-container.selected .delete-btn {
    transform: scale(1);
  }
  #delete-selected-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #delete-selected-btn:hover {
    background-color: #cc0000;
  }


.control-panel-container{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    
}
.control-panel-header{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
.control-panel-header:hover{
    color:var(--color-primary) ;
}