body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.centered-content {
    margin: 0;
    padding: 0;
}

.input-group {
    width: 335px;
    height: calc(190px - 2px);
    margin-bottom: 0;
}

.ulBox {
    width: 335px;
    margin-top: 0;
    border-top: 1px solid #ccc;
}

#title {
    font-family: Arial, sans-serif;
    color: #333;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 400px;
    margin-bottom: 40px;
}

.avatar-container {
    position: absolute;
    top: calc(50% - 65px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.avatar {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.combined-input {
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    overflow: hidden;
    position: relative;
    margin-top: 220px;
}

 input[type="text"] {
    flex-grow: 1;
    font-size: 24px;
    padding: 15px 45px 15px 20px;
    border: none;
    outline: none;
    text-align: center;
    color: #333;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

input[type="text"] {
    font-size: 24px;
    padding: 15px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    width: 360px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: all 0.3s ease;
}

input[type="text"]:hover, input[type="text"]:focus {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.combined-input {
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    overflow: hidden;
    position: relative;
}

input[type="text"] {
    flex-grow: 1;
    font-size: 24px;
    padding: 15px 45px 15px 20px;
    border: none;
    outline: none;
    text-align: center;
    color: #333;
    transition: all 0.3s ease;
}

.action-button {
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 0 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 0 25px 25px 0;
    width: 50px;
    font-family: Arial, sans-serif;
    color: #333;
}

.combined-input:hover, input[type="text"]:focus {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
    .input-group {
        width: 90%;
    }

    .avatar-container {
        width: 80px;
        height: 80px;
        top: calc(50% - 40px);
    }

    .combined-input {
        margin-top: 80px;
    }
}

#customDropdown {
    position: absolute;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 335px;
    max-height: 170px;
    overflow-y: auto;
    z-index: 1000;
    list-style-type: none;
    padding: 0;
    transition: all 0.3s ease;
    margin-top: 0;
    transform: translateX(20px);
    padding: 8px 0;
    margin-top: 8px;
}

#customDropdown[aria-hidden="true"] {
    display: none;
}

#customDropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#customDropdown li {
    padding: 5px 40px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#customDropdown li:first-child {
    border-top: none;
}

#customDropdown li:last-child {
    border-bottom: none;
}

#customDropdown li:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

#customDropdown li.active {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
}

#customDropdown::-webkit-scrollbar {
    width: 8px;
}

#customDropdown::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
}

#customDropdown::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

#customDropdown::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
