body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #203a5d;
    color: #333;
}

/* .container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
} */

.logo {
    width: 20%;
    position: absolute;
    top: 10px;  /* Adjust based on your exact header and padding needs */
    right: 10px;  /* Adjust to keep the image inside the container */
}

.container {
    position: relative;  /* Needed to position the .logo absolutely within the container */
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}


h1 {
    color: #2c5282;
    width: 80%;
}


h2 {
    color: #5638ca;
    width: 80%;
}

p {
    font-size: 1.1em;
    margin-top: 0;
    color: #666;
}

label {
    display: block;
    margin-top: 20px;
    color: #444;
    text-align: center;
    vertical-align: top; /* Align label at the top of the element */
}


input[type="file"], textarea {
    width: 90%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px
}


input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
    background: #3498db;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
}


.button {
    display: inline-block;
    background-color: #805ad5;
    color: white;
    padding: 10px 20px;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.button2 {
    display: inline-block;
    background-color: #2c5282;
    color: white;
    padding: 10px 20px;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.button3 {
    display: inline-block;
    background-color: #189c0c;
    color: white;
    padding: 10px 20px;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.button:hover, .button2:hover, .button3:hover {
    background-color: #0056b3;
}

#downloadLinks {
    margin-top: 30px;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed; /* Use fixed positioning */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    margin-top: -60px; /* Offset by half the height */
    margin-left: -60px; /* Offset by half the width */
    z-index: 1000; /* Make sure it's on top of other elements */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
