.mobile-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.custom-select {
    width: 100%;
    max-width: 100px;
    font-size: 14px;
    position: relative;
    font-family: 'Alexandria-Light';
}

.select-header {
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #d1d3d4;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Alexandria-Light';
}

.search-input {
    padding: 10px 10px;
    margin-top: 2px;
    margin-left: 2px;
    margin-bottom: 2px;
    display: block;
    font-size: 16px;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d1d3d4;
    font-family: 'Alexandria-Light';
}

.search-input:focus {outline: 0;}

.select-header:hover {
    border-color: #a0a0a0;
}

.select-header:focus {outline: 1px solid #1A9FB7;}

.arrow {
    border: solid #666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(-135deg);
}

.options-container {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    scrollbar-width: none; /* Firefox */
}

.options-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.options-container.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.option-item.selected {
    background: #1A9FB7;
    color: white;
}

/* Hide original select */
.original-select {
    display: none;
}