/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #0fc8d4;
}

/* Style the topnav home */
.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Style the Sign In button */
.topnav .sign-in {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover,
.topnav .sign-in:hover {
    background-color: #e0ffff;
    color: rgb(6, 182, 126);
}

/* Change color on hover */
.topnav :hover {
    background-color: #e0ffff;
    color: rgb(6, 182, 126);
}

.body {
    margin: 0;
}

.sidebar a:hover {
    background-color: #e0ffff;
    color: rgb(6, 182, 200);
}

.sidebar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    text-decoration: none;
    color: #333;
}

.sidebar a.active {
    font-weight: bold;
}

.container {
    display: flex;
}

.sidebar {
    width: 150px;
    /* Adjust the width as needed */
    background-color: #CFEAEC;
    padding: 20px;
}

.main-content {
    flex: 1;
    padding: 20px;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

/* Style the footer */
footer {
    background-color: #0fc8d4;
    padding: 30px;
    text-align: center;
    color: black;
}

/* Style the Sign Up page */
.signUpForm {
    background-color: #0fc8d4;
    width: 50%;
    padding: 0 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.signUpForm h1 {
    text-align: center;
}

.signUpForm form {
    display: flex;
    flex-direction: column;
}

.signUpForm label {
    margin-top: 10px;
}

.signUpForm button {
    padding: 10px;
    background-color: #CFEAEC;
    color: black;
    border: none;
    border-radius: 5px;
}

/* Login Style*/
.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
}

.login-container h1 {
    margin-top: 0;
}

.login-container input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-container input[type="button"] {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}


.login-container a {
    color: #4CAF50;
    text-decoration: none;
    margin: 8px 0;
    display: inline-block;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Fixed output fields*/
input[type="number"] {
    width: 100px;
    box-sizing: border-box;
}

/* Ratio Style */
.contain {
    background-color: #0fc8d4;
}

.contain table {
    background-color: white;
}