/* General Styles */
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a {
    color: #292A4B;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #7858FE;
}

.small-link:hover {
    color: #292A4B;
}

/* Container */
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 60px;
    background: white;
    border-radius: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 80%;
    max-width: 900px;
    position: relative; /* Allows navbar positioning inside */
}

/* Navbar - Contained inside .container */
.navbar {
    width: 100%; /* Same width as container */
    background-color: #292A4B; /* Adjust as needed */
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 0px 0;
    position: absolute;
    top: 0;
}

/* Navbar Buttons */
.navbar button {
    background-color: #7858FE;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    height: 60px;
    cursor: pointer;
    /* font-weight: bold; */
    margin: 0 2px;
    white-space: nowrap;
}

.navbar button:hover {
    background-color: #D0CEFF;
    color: #292A4B;
}

/* Left Side */
.left-side {
    background: #e6e6fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.left-side img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

/* Right Side */
.right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* QR Code */
.qr-section {
    text-align: center;
    margin-bottom: 20px;
}

.qr-section img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s;
}

.qr-section p {
    font-size: 14px;
    color: gray;
}

#qrOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Enlarged QR Code */
/* Enlarged QR Code */
.qr-section img.qr-enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    width: 85vw;
    height: 85vh;
    max-width: 600px;
    max-height: 600px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}


/* Small link style */
.small-link {
    cursor: pointer;
    color: #7858FE;
}


/* Button */
.start-button {
    background-color: #7b5efb;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.start-button:hover {
    background-color: #ACAAFF;
}

/* Footer */
.footer {
     /* Same width as container */
    /* 
    padding: 0px 0;
    
    bottom: 0;*/
    width: 100%;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 14px;
    color: #7858FE;
    bottom: 0;
    position: absolute;
    margin-left: -20px;
    margin-bottom: 5px;

}

.footer img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}


