body {
        background-color: #333;
        color: #fff;
        margin: 0;
        font-family: Arial, sans-serif;
        overflow-y: scroll;
    }

    body::-webkit-scrollbar {
        width: 8px;
    }

    body::-webkit-scrollbar-track {
        background: #333;
    }

    body::-webkit-scrollbar-thumb {
        background: #555;
        border-radius: 5px;
    }

    body::-webkit-scrollbar-thumb:hover {
        background: #666;
    }

    .search-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 20px auto;
    }

    .search-bar-container {
        position: relative;
        display: flex;
        width: 100%;
    }

    .search-bar {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        background-color: #555;
        color: #fff;
        padding-right: 50px; /* Make space for the mic button */
    }

    .mic-button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mic-button img {
        width: 24px;
        height: 24px;
    }

    .suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #444;
        border: 1px solid #555;
        border-radius: 0 0 5px 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        display: none;
    }

    .suggestions::-webkit-scrollbar {
        width: 8px;
    }

    .suggestions::-webkit-scrollbar-track {
        background: #333;
    }

    .suggestions::-webkit-scrollbar-thumb {
        background: #555;
        border-radius: 5px;
    }

    .suggestions::-webkit-scrollbar-thumb:hover {
        background: #666;
    }

    .suggestion-item {
        display: flex;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #555;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .suggestion-item:hover {
        background-color: #555;
    }

    .suggestion-item img {
        width: 80px;
        height: auto;
        border-radius: 5px;
        margin-right: 15px;
    }

    .suggestion-details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: calc(100% - 95px);
    }

    .suggestion-title {
        font-size: 16px;
        font-weight: bold;
    }

    .suggestion-jname {
        font-size: 14px;
        color: #aaa;
    }

    .suggestion-info {
        font-size: 12px;
        color: #888;
        margin-top: 5px;
    }

    .mic-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 10px;
        display: none;
        z-index: 1000;
    }

    .mic-popup-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sound-wave {
        width: 5px;
        height: 30px;
        background-color: #fff;
        margin: 0 2px;
        animation: sound 1s infinite;
    }

    .sound-wave:nth-child(2) {
        animation-delay: 0.2s;
    }

    .sound-wave:nth-child(3) {
        animation-delay: 0.4s;
    }

    .sound-wave:nth-child(4) {
        animation-delay: 0.6s;
    }

    .sound-wave:nth-child(5) {
        animation-delay: 0.8s;
    }

    @keyframes sound {
        0%, 100% {
            transform: scaleY(1);
        }
        50% {
            transform: scaleY(2);
        }
    }
