/* Reset some default styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body, h1, p, label, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a202c; /* Dark background color */
    color: #cbd5e0; /* Light text color */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #B9891C; /* Light blue heading color */
    margin-bottom: 1rem;
}

.description {
    color: #FFEDCB; /* Light gray description color */
    margin-bottom: 1.5rem;
}

/* Form Styles */
.label {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #FFEDCB; /* Light gray label color */
    margin-top: 1rem;
}

.file-contents-input, .file-input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #2d3748; /* Dark border color */
    border-radius: 0.25rem;
    background-color: #767a80; /* Dark gray background color */

    /* Allow text to wrap to the second line */
    white-space: pre-wrap;

    /* Add a scrollbar when needed */
    overflow-y: auto;
    max-height: 1000px; /* Set a max height to enable scrolling */
    color: #ffffff; /* Light text color */
}

.button {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    
}

.display-button {
    background-color: #DBA11C;
    color: #fff;
}

.generate-button, #downloadAll {
    background-color: #DBA11C;
    color: #fff;
}

#warning{
    color: #ff1a1a

}

/* QR Code Container Styles */
.qr-code-container {
    margin-top: 1rem;
    
}
.inline-block {
    margin-right: 15px;
    margin-bottom: 20px;
}
.row-container {
    display: flex;
    justify-content: flex-start; 
    flex-wrap: nowrap; /* Ensures the QR codes stay in a single row */
}

.qr-code {
    background-color: #767a80; /* Dark background color */
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
                
                
}

/* Footer Styles */
.footer {
    text-align: center;
    color: #718096;
    margin-top: 2rem;
    margin-right:2rem;
    font-weight: bolder;
}

.footer-link {
    text-decoration: underline;
    color: #a0aec0; 
    font-size: larger;
}