/* Apply gradient background to the entire page */
html {
    min-height: 100%;
    background: linear-gradient(to bottom, #092c69, #650969);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* QR wrapper to align containers horizontally */
.qr-wrapper {
    display: flex;
    justify-content: space-between; /* Default for multiple QR codes */
    align-items: center;
    width: 90%; /* Full width of the container but leaves some margin */
    max-width: 1000px; /* You can adjust max-width to ensure the layout fits well */
    margin: 0 auto;
    gap: 400px; /* Set space between QR codes to 400px */
}

/* If only one QR code is available, center it */
.qr-wrapper.single-qr {
    justify-content: center;
    gap: 0;
}

/* QR container styling */
.qr-container {
    display: flex;
    flex-direction: column; /* Places text above the image */
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    width: 200px; /* Set fixed width for QR containers */
}

/* QR Code title styling */
.qr-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px; /* Ensure space between title and QR image */
    text-align: center;
    color: black !important; /* Ensures that the color is black */
    display: block;
    background-color: white;
    padding: 5px 10px;
}

/* QR Code image styling */
.qr-container img {
    max-width: 200px;
    height: auto;
}

/* Container styling for mobile.html */
.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    margin: 20px;
}

/* Title styling */
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button container styling */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Download button styling */
.download-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    width: 80%;
    max-width: 300px;
    transition: background-color 0.3s ease;
}

/* App Store button specific styling */
.appstore {
    background-color: #007AFF;
    color: white;
}

/* Google Play button specific styling */
.googleplay {
    background-color: #34A853;
    color: white;
}

/* Hover effect for download buttons */
.download-button:hover {
    opacity: 0.9;
}
