body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

#backgroundContainer {
    position: relative;
}

#backgroundImage {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#centeredHeading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#centeredHeading h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Choose a suitable font */
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #4e69a2, #3c4d7e); /* Adjust gradient colors */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#centeredHeading h3 {
    font-size: 2em;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Choose a suitable font */
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    background: linear-gradient(90deg, #4e69a2, #3c4d7e); /* Adjust gradient colors */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#scrollDownIndicator {
    position: absolute;
    bottom: 20px; /* Adjust the bottom value as needed */
    left: 43%;
    transform: translateX(-50%);
    color: #fdf46e;
    font-size: 2em;
    animation: bounce 1s infinite alternate; /* Add a bounce animation effect */
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

#backgroundImage {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#app {
    display: none;
    flex-direction: row; /* Make it a row to show form and table side by side */
}

#formContainer,
#tableContainer {
    display: none;
}

h1, h2 {
    color: #495057;
    text-align: center;
}

#formContainer {
    width: 25%;
    padding: 20px;
    margin-right: 20px; /* Add margin to the right */
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#tableContainer {
    flex: 1;
    margin-left: 20px; /* Add margin to the left */
    margin-right: 20px; /* Add margin to the right */
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table {
    width: calc(100% - 20px); /* Adjust width to leave space for margins */
    border-collapse: collapse;
    margin: 20px; /* Add margin for spacing */
}

table, th, td {
    border: 1px solid #dee2e6;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f1f1f1;
}

div {
    margin-top: 20px;
}

label {
    display: inline-block;
    width: 80px;
    margin-bottom: 5px; /* Add margin to the bottom */
}

input {
    display: block; /* Display form elements vertically under one another */
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
