/* Include the padding and border in an element's total width and height */
* {
    box-sizing: border-box;
  }
  
  /* Remove margins and padding from the list */
  ul {
    margin: 0;
    padding: 0;
  }
  
  /* Style the list items */
  ul li {
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    background: #eee;
    font-size: 18px;
    transition: 0.2s;
  
    /* make the list items unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Set all odd list items to a different color (zebra-stripes) */
  ul li:nth-child(odd) {
    background: #f9f9f9;
  }
  
  /* Darker background-color on hover */
  ul li:hover {
    background: #ddd;
  }
  
  /* When clicked on, add a background color and strike out text */
  ul li.checked {
    background: #888;
    color: #fff;
    text-decoration: line-through;
  }
  
  /* Add a "checked" mark when clicked on */
  ul li.checked::before {
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
  }
  
  /* Style the close button */
  .close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
  }
  
  
  
  .close:hover {
    background-color: #f44336;
    color: white;
  }
  
  /* Style the fastSelect button */
  .fastSelect {
    position: absolute;
    text-align: right;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
  }
  
  .fastSelect:hover {
    background-color: #f44336;
    color: white;
  }
  
  /* Style the edit button */
  .editlistitem {
    position: absolute;
    right: 50px;
    top: 0;
    padding: 12px 16px 12px 16px;
  }
  
  .editlistitem:hover {
    background-color: #2ca73e;
    color: white;
  }
  
  
  /* Style the header */
  .header {
    background-color: #f44336;
    padding: 10px 15px;
    color: white;
    text-align: center;
  }
  
  /* Clear floats after the header */
  .header:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the input */
  .inputClass {
    margin: 0;
    border: none;
    border-radius: 5px;
    width: 50%;
    padding: 10px;
    float: left;
    font-size: 16px;
  }
  
  /* Style the "BtnAdd" button */
  .BtnAdd {
    padding: 10px;
    width: 15%;
    background: #f8fae1;
    color: #555555;
    float: left;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
  }
  
  /* Style the "BtnDel" button */
  .BtnDel {
    padding: 10px;
    width: 15%;
    background: #f5e0e0;
    color: #555555;
    float: left;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
  }
  
  .BtnCover {
    padding: 10px;
    width: 100%;
    background: #009900;
    color: #000000;
    float: center;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
  }
  
  .Btn:hover {
    background-color: #bbb;
  }
  
  /* Style the reflection */
  .reflection {
    margin: 0;
    border: 2px;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    float: left;
    font-size: 16px;
  }
  
  img {
    width: 100%;
    height: auto;
    }
/*
    .image-container {
      width: 100%; /* Full width of the container 
      position: relative; /* Position relative for absolute positioning of the image 
      padding-top: 100%; /* This creates a square aspect ratio 
      overflow: hidden; /* Ensures no overflow 
   }
  
    .stretch-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures the image covers the container without distortion 
    }
    */
    .image-container-halftall {
      width: 100%; /* Full width of the container */
      position: relative; /* Position relative for absolute positioning of the image */
      padding-top: 50%; /* This creates a square aspect ratio */
      overflow: hidden; /* Ensures no overflow */
   }


    .WholeSection{
      overflow:auto;
      background-color: #00ffff;
      padding:10px;
      box-sizing:border-box;
      position: relative; /* Ensure the child can size relative to this */
    }

    /* Compact, themed dropdown similar to Weave top bar */
    .custom-select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-color: #e0fbff; /* light teal */
      border: 1px solid #00a0a0;
      color: #004a4a;
      font-family: "Courier New", Courier, monospace;
      font-size: 14px;
      line-height: 1.2;
      padding: 4px 24px 4px 8px; /* compact */
      border-radius: 6px;
      min-height: 28px;
      box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset;
    }
    .custom-select:hover { background-color: #d7f6fb; }
    .custom-select:focus {
      outline: none;
      border-color: #008b8b;
      box-shadow: 0 0 0 2px rgba(0,139,139,0.15);
    }
    /* small chevron via background image */
    .custom-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23004a4a' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 6px center;
      background-size: 10px 6px;
    }
    /* container alignment adjustments */
    .TopSection .divSingleRow {
      gap: 8px;
    }


  .image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .stretch-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }