body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
}

.sidebar {
    position: fixed;
    top: 56px; /* Adjust this value to match the header height */
    bottom: 0;
    left: 0;
    width: 200px; /* Adjust this value to match the sidebar width */
    padding-top: 1rem;
    overflow-y: auto;
}

.main-content {
    margin-left: 200px; /* Adjust this value to match the sidebar width */
    padding: 20px;
}

.btn-cyan {
    background-color: #00bcd4;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.btn-cyan:hover {
    background-color: #0097a7;
}

