.form-table select {
    min-width: 200px;
}

#menu-items-table th,
#menu-items-table td {
    padding: 15px 10px;
}
#menu-items-table tr td:nth-child(3) {
    width: 20%;
}
#menu-items-table input[type="text"],
#menu-items-table select {
    width: 100%;
}

#menu-items-table .icon-preview {
    text-align: center;
}

#menu-items-table .icon-preview ion-icon {
    font-size: 24px;
}

/* Custom styling for better icon visibility */
#menu-items-table select {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#menu-items-table select option {
    padding: 5px;
}

#menu-items-table select option:hover {
    background-color: #f0f0f0;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 22px 0 10px;
    font-size: 14px;
    font-weight: 300;
    color: #3b3b3b;
    height: 40px;
    line-height: 40px;
    background: #ffffff;
    cursor: pointer;
}

.custom-select-trigger::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 0;
    transition: all .3s;
}

.custom-select.opened .custom-select-trigger::after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: 0;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: all .3s;
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 22px 0 10px;
    font-size: 14px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 30px;
    cursor: pointer;
    transition: all .3s;
}

.custom-option:hover {
    background: #f5f5f5;
}

.custom-option.selected {
    color: #ffffff;
    background: #305c91;
}

svg.feather{
    margin-right: 10px;
    font-size: 18px;
}