    /* Basic reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Full-screen layout setup */
    body,
    html {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #1d1f27;
        font-family: 'Arial', sans-serif;
        color: white;
        overflow: hidden;
        position: relative;
    }

    /* Title with animation */
    .title-container {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 48px;
        color: #00bcd4;
        font-weight: bold;
        letter-spacing: 2px;
        white-space: nowrap;
        text-align: center;
        z-index: 2;
        pointer-events: none;
        transition: transform 0.1s ease;
    }

    /* Home Button */
    .home-btn {
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        background-color: #00bcd4;
        border: none;
        border-radius: 5px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    }

    .home-btn:hover {
        background-color: #03a9f4;
    }

    /* Chatbot container with backlighting effects */
    .chat-container {
        width: 100%;
        max-width: 1000px;
        height: 70%;
        border-radius: 10px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
        position: relative;
        backdrop-filter: blur(10px);
        animation: glow 1.5s infinite alternate;
    }

    .ip {
        display: flex;
        width: 100%;
        margin-bottom: 20px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
        outline: none;
        border: none;
        gap: 10px;
    }

    .sendbutton {
        width: 10%;
        height: 100%;
        border-radius: 10px;
    }

    .sendbutton:hover {}

    /* Search bar */
    .search-bar {
        width: 90%;
        padding: 15px;
        font-size: 18px;
        background-color: #f0f0f0;
        border-radius: 10px;
        color: #333;
    }

    /* Response area */
    .response-area {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 20px;
        /* Transparent background */
        border-radius: 10px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        animation: fadeIn 1.5s ease-in forwards;
    }

    .small-box {
        display: flex;
        gap:20px;
    }

    .box {
        width: 100%;
        height: auto;
        background-color: black;
        border-radius: 20px;
        padding: 20px;
    }

    /* Individual responses */
    .response {
        margin: 10px 0;
        padding: 10px;
        background-color: rgba(224, 224, 224, 0.9);
        /* Semi-transparent responses */
        border-radius: 5px;
        color: #333;
        font-size: 16px;
    }

    /* Scrollbar styling */
    .response-area::-webkit-scrollbar {
        width: 8px;
    }

    .response-area::-webkit-scrollbar-thumb {
        background: #00bcd4;
        border-radius: 5px;
    }

    /* Animation for title */
    .title-container {
        transform: translateX(-50%) rotate(0deg);
        transition: transform 0.1s ease;
    }

    h3 {
        margin-bottom: 10px;
    }

    /* Home Button */
    .home-btn {
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        background-color: #00bcd4;
        border: none;
        border-radius: 5px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    }

    .home-btn:hover {
        background-color: #03a9f4;
    }

    /* Glowing effect for the box */
    @keyframes glow {
        0% {
            box-shadow: 0 0 10px rgba(0, 188, 212, 0.5), 0 0 20px rgba(0, 188, 212, 0.5);
        }

        100% {
            box-shadow: 0 0 20px rgba(0, 188, 212, 0.7), 0 0 30px rgba(0, 188, 212, 0.7);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Background */
    .background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0, 188, 212, 0.8), rgba(0, 51, 102, 0.8));
        z-index: -2;
    }

    /* From Uiverse.io by adamgiebl */
    .button {
        font-family: inherit;
        font-size: 20px;
        background: royalblue;
        color: white;
        padding: 0.7em 1em;
        padding-left: 0.9em;
        display: flex;
        align-items: center;
        border: none;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.2s;
        cursor: pointer;
    }

    .button span {
        display: block;
        margin-left: 0.3em;
        transition: all 0.3s ease-in-out;
    }

    .button svg {
        display: block;
        transform-origin: center center;
        transition: transform 0.3s ease-in-out;
    }

    .button:hover .svg-wrapper {
        animation: fly-1 0.6s ease-in-out infinite alternate;
    }

    .button:hover svg {
        transform: translateX(1.2em) rotate(45deg) scale(1.1);
    }

    .button:hover span {
        transform: translateX(5em);
    }

    .button:active {
        transform: scale(0.95);
    }

    @keyframes fly-1 {
        from {
            transform: translateY(0.1em);
        }

        to {
            transform: translateY(-0.1em);
        }
    }

    .loader {
        width: 60px;
        aspect-ratio: 4;
        --_g: no-repeat radial-gradient(circle closest-side, #ffffff 90%, #fafafa00);
        background:
            var(--_g) 0% 50%,
            var(--_g) 50% 50%,
            var(--_g) 100% 50%;
        background-size: calc(100%/3) 100%;
        animation: l7 1s infinite linear;
    }

    @keyframes l7 {
        33% {
            background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%
        }

        50% {
            background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%
        }

        66% {
            background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%
        }
    }