/*
  ╔════════════════════════════════════════════════════════════╗
  ║                    Custom CSS Information                  ║
  ╠════════════════════════════════════════════════════════════╣
  ║ Script Name   : Custom CSS                                 ║
  ║ Author        : Evan Ahmed EMon                            ║
  ║ Copyright     : © 2025 Evan Ahmed EMon                     ║
  ║ License       : All rights reserved                        ║
  ║ Contact       : WhatsApp - +8801864614704                  ║
  ╠════════════════════════════════════════════════════════════╣
  ║ This script is protected by copyright law.                 ║
  ║ Any unauthorized copying, distribution, reproduction,      ║
  ║ or modification is strictly prohibited.                    ║
  ║                                                            ║
  ║ Please respect the time and effort invested in this work.  ║
  ║ Your support enables future updates and innovations.       ║
  ╚════════════════════════════════════════════════════════════╝
*/

    .custom-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin: 2px 3px 2px 0;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}
.custom-badge i {
    margin-right: 5px;
}


#unique-dropdown {
    max-height: 460px;
    border-radius: 12px;
    margin-top: 10px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    display: block;
    position: absolute;
    left: 2%;
    width: 96%;
    background: #fff;
    z-index: 9999;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

/* Scrollbar for Webkit */
#unique-dropdown::-webkit-scrollbar {
    width: 6px;
}
#unique-dropdown::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 3px;
}
#unique-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

/* List Item Box Style */
.selectme {
    background: #fefefe;
    padding: 14px 18px;
    margin: 8px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    color: #222;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    border: 1px solid #eee;
}

.selectme:hover {
    background-color: #f8f8f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight {
    font-weight: bold;
    background-color: #ffeb3b;
    padding: 1px 3px;
    border-radius: 4px;
}

/* Adjust for medium to large screens */
@media (min-width: 768px) {
    #unique-dropdown {
        left: 1.5%;
        width: 97%;
    }
}
@media (min-width: 992px) {
    #unique-dropdown {
        left: 1.5%;
        width: 96.5%;
    }
}

/* Input wrapper buttons */
.form-group .search-dropdown .input-wrapper .input-wrapper__prepend,
.form-group .search-dropdown .input-wrapper .input-wrapper__append {
    position: absolute;
    background: none;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    color: var(--form_group_icon_color);
    cursor: pointer;
}

.form-group .search-dropdown .input-wrapper .input-wrapper__prepend:hover,
.form-group .search-dropdown .input-wrapper .input-wrapper__append:hover {
    opacity: 0.6;
}

.form-group .search-dropdown .input-wrapper .input-wrapper__append {
    font-size: 13px;
    right: 5px;
    display: none;
}
