.search-form-custom {
    display: flex;
    justify-content: center;
    padding: 10px;
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    padding: 8px 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-input {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 15px;
    width: 100%;
    outline: none;
    appearance: none;
    padding-right: 8px;
}

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

.search-input option {
    color: #000;
}

.search-shortcut {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    color: #555;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: 8px;
    cursor: default;
    pointer-events: none;
}