
    /* Custom Select Container */
    .custom-select {
        position: relative;
        width: 100%;
    }
  
    /* Styled Select Button */
    .select-btn {
        background: #fff;
        padding: 10px;
        border: 1px solid #ccc;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 5px;
        position: relative;
    }
  
    /* Selected Image */
    .select-btn .selected-img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        border-radius: 3px;
        display: none; /* Initially hidden */
    }
  
    /* Dropdown Arrow */
    .arrow {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }
  
    /* Rotate arrow when dropdown is active */
    .select-btn.active .arrow {
        transform: rotate(180deg);
    }
  
    /* Dropdown List */
    .select-dropdown {
        position: absolute;
        width: 100%;
        background: #fff;
        border: 1px solid #ccc;
        display: none;
        max-height: 200px;
        overflow-y: auto;
        z-index: 100;
    }
  
    .select-dropdown div {
        padding: 10px;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 16px;
    }
  
    .select-dropdown div:hover {
        background: #f0f0f0;
    }
  
    .select-dropdown img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        border-radius: 3px;
    }
  
  
    /* Size Select Container */
  .size-select {
    position: relative;
    width: 100%;
  }
  
  /* Size Select Button */
  .size-btn {
    background: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    position: relative;
  }
  
  /* Dropdown Arrow */
  .size-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  /* Rotate arrow when dropdown is active */
  .size-btn.active .size-arrow {
    transform: rotate(180deg);
  }
  
  /* Size Dropdown List */
  .size-dropdown {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
  }
  
  .size-dropdown div {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
  }
  
  .size-dropdown div:hover {
    background: #f0f0f0;
  }