body {
    margin: 0;
    background-color: #FFFFFF;
    font-family: Arial, sans-serif;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #D3D3D3;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px auto;
    height: 60px;
}

.search-button {
    width: 75px;
    height: 100%;
    background-color: #9B00B3;
    clip-path: polygon(5% 0, 100% 0, 70% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s ease;
    padding: 0;
}

.search-button:hover {
    background-color: #C2B280;
    color: #2A3439;
}

.search-button .material-symbols-outlined {
    font-size: 25px;
    line-height: 1;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 16px;
    background: transparent;
    height: 100%;
}

.search-box input::placeholder {
    color: #2A3439;
    font-style: italic;
}

.live-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.live-results li {
    padding: 10px;
    border-bottom: 1px solid #D3D3D3;
}

.live-results li:hover {
    background: #9B00B3;
    color: #FFF;
    cursor: pointer;
}
