body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.sidebar {
    height: 100vh;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    padding-top: 20px;
}

.sidebar a {
    display: block;
    padding: 10px;
    color: white;
    background-color: #444;
    text-decoration: none;
    margin: 10px;
    border-radius: 5px;
}

.sidebar a:hover {
    background-color: #555;
}

select {
    font-size: 18px;      /* makes the text bigger */
    padding: 10px;        /* adds space inside the box */
    width: 40%;          /* makes it stretch full width of container */
    height: 45px;         /* optional: makes it taller */
    box-sizing: border-box; /* ensures padding doesn't overflow width */
}


.main-content {
    margin-left: 210px;
    padding: 20px;
}

body{
    font-size: 20px;
}

input[type="text"], input[type="password"],
textarea {
    font-size: 18px;     /* makes the text inside bigger */
    width: 40%;          /* makes the box wider (you can use px too) */
    height: 40px;         /* makes the box taller (optional for <input>) */
    padding: 10px;        /* adds spacing inside the box */
    box-sizing: border-box; /* ensures padding doesn't overflow the width */
}

#loginDisplay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(242, 242, 242, 0.9); /* faint white box */
    width: 400px;
    margin: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* soft shadow */
    border-radius: 10px;
    padding: 40px;
    margin: 100px auto 0 auto;
}

button {
    background-color: #28a745; /* Bootstrap-style green */
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838; /* darker green on hover */
}

.edit-btn {
    display: inline-block;
    background-color: skyblue; /* yellowish */
    color: black;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
}

.edit-btn:hover {
    background-color: lightblue;
}


