body {
    margin: 0px;
}

.container {
    background: lightgray;
    background: radial-gradient(circle, rgb(255, 202, 255), lightblue);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    background-color: white;
    border: 0.5px solid grey;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px grey;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures content inside is centered horizontally */
    text-align: center; /* Centers text inside the box */
}

#url {
    border: none;
    border-radius: 1px;
    font-size: 15px;
    text-align: center;
    background-color: lavender;
    padding: 5px 10px;
    width: 70%;
}

#generateQr {
    width: 80%;
    margin-top: 15px !important;
    margin: auto;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    background-color: tomato;
    padding: 5px 10px;
    color: white;
}

#qrImage {
    width: 250px;
    margin: 0 0 10px 0;
}

#qrResult {
    margin-top: 15px; /* Adds spacing between the form and QR result */
}

#qrLink {
    word-wrap: break-word; /* Ensures long URLs wrap within the container */
}

p {
    margin: 5px 0; /* Adds consistent spacing for text elements */
}
