.miko-expedition-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.miko-expedition-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 100%;
}

.miko-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f3d3a;
    margin-bottom: 10px;
}

.miko-desc {
    color: #555;
    margin-bottom: 25px;
}

.miko-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #F2F2F2;
    align-items: center;
    padding: 8px 12px;
    border-radius: 24px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.miko-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px 24px;
    border-right: 1px solid rgba(191, 201, 195, 0.3);
    position: relative;
}

.miko-field label {
    font-size: 12px;
    color: #404945;
}


.custom-select {
    position: relative;
    user-select: none;
}

.select-selected {
    font-size: 18px;
    font-weight: 600;
    color: #676767;
    cursor: pointer;
    line-height: 40px;
    position: relative;
}

.select-selected svg{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.miko-field > svg{
    position: absolute;
    right: 0;
    top: 65%;
    transform: translateY(-50%);
}

.select-items {
    position: absolute;
    background-color: #fff;
    z-index: 99;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    border-radius: 4px;
    border: 1px solid #e4e7ed;
}

.select-items::-webkit-scrollbar {
  width: 2px;
}

.select-items::-webkit-scrollbar-track {
  background: #f8f8f8; 
}

.select-items::-webkit-scrollbar-thumb {
  background: #d8d8d8; 
}

.select-items::-webkit-scrollbar-thumb:hover {
  background: #a7a7a7; 
}

.select-items div {
    padding: 8px 15px;
    cursor: pointer;
}

.select-items div:hover {
    background-color: #f0f0f0;
}
.select-hide { display: none; }

.miko-field select,
.miko-field input, .miko-field input:focus {
    border: none;
    outline: none;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #676767;
    background-color: transparent;
    box-shadow: none;
}
.miko-field input::placeholder{
    color: #676767;
}

.miko-btn {
    background: #1f4d45;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 16px;
    cursor: pointer;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .miko-search-form{
        border-radius: 12px;
    }
    .miko-field{
        flex: 0 0 49%;
        padding: 0 24px 0 0;
    }
    .miko-field:nth-child(2n){
        border-right: none;
    }
    .miko-field > svg{
        right: 24px;
    }
    .miko-btn{
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 540px) {
    .miko-field{
        flex: 0 0 48%;
    }    
}