body {
    background-color: #ffffff;
    color: #b30000;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #ffffff;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px;
    position: relative;
}

.navbar img {
    height: 100px; /* was 70px */
    margin-right: 20px;

}

.navbar .title {
    margin: 0 auto;
    font-size: 22px;
    text-align: center;
    width: 100%;
} 

.navbar h2 {
    font-size: 22px;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border: 2px solid #b30000;
    border-radius: 10px;
    background-color: #fff5f5;
}

h2 {
    color: #b30000;
    margin-bottom: 20px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #b30000;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    background-color: #b30000;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #990000;
}

a {
    color: #b30000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.mini-button {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #b30000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.mini-button:hover {
    background-color: #990000;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-center {
    flex-grow: 1;
    text-align: center;
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-right a {
    color: white;
    background-color: #b30000;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-right a:hover {
    background-color: #990000;
}
