body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

input {
    width: 50px;
    text-align: center;
    margin: 5px;
}

button {
    margin: 10px;
    padding: 5px 15px;
    cursor: pointer;
}




/* Logo Styling */
.logo-link {
    text-decoration: none; /* Remove underline from the link */
    display: inline-block; /* Ensure the link wraps around the logo */
}

.logo {
    height: 45px; /* Set the height of the logo */
    width: auto; /* Maintain aspect ratio */
}

/* Optional: Add a hover effect */
.logo-link:hover {
    opacity: 0.8; /* Slight fade effect on hover */
}

header {
    background-color: #fad21e;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.1em;
    color: #0e0808;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav {
    display: flex;
    align-items: center;
    margin-top: 10px;

}

nav a {
    color: #000000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    margin-right: 4cap;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

/* Operation Type Radio Buttons */
.operation-type {
    margin-bottom: 20px;
}

.operation-type label {
    font-weight: bold;
    margin-right: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.radio-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-buttons label {
    display: flex;
    align-items: center;
    gap: 5px;
}






/* Footer Styles */
.footer {
    display: flex;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.1em;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    background-color: #fad21e;
    color: #000000;
    margin-top: 40px;
}

.footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    margin-right: 4cap;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-center img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

