body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
}

/* Sidebar Styles */
.sidebar {
   position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    padding: 20px;
    border-right: 1px solid #ddd;
    z-index: 1000;
}s

.sidebar ul {
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    list-style: none;
    padding: 8px 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.sidebar ul li a {
    text-decoration: none;
    color: inherit;
}

.sidebar li:hover {
    background: #fff;
}

.sidebar ul li:hover {
    color: #5E6FB5; 
}

/* Content Section */
.content {
    margin-left: 270px;
    padding: 20px;
    flex-grow: 1;
	  overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center; 
    vertical-align: middle;
}

th {
    background-color: #536ac9;
}

tr:hover {
    background-color: #5E6FB5; 
    cursor: pointer;
}

h1 {
    text-align: center;
}