
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: top;
    background: rgb(186, 230, 181);
    color: black;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Logo */
.snblogo {
    width: 120px;
    margin-bottom: 10px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: Roboto, sans-serif;
}

/* Search Box */
.search-box {
    display: flex;
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: white;
    color: black;
    padding: 12px 16px;
    font-size: 18px;
    text-align: left;
}

.search-box button {
    border: none;
    position: absolute;
    padding: 0px 20px;
    right: 15px;
    height: 45px;
    border-radius: 50px;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: rgb(186, 230, 181);;
    transform: scale(1.05);
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.results {
    margin-top: 20px;
    color: black;
    background: transparent;
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.4s ease;
    overflow-y: auto;
    overflow-wrap: break-word;
}

#qrImage{
    margin-top: 20px;
}



