body {
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #333;
    display: flex;
}

.sidebar {
    width: 250px;
    height: 100%;
    background-color: #1f2937;
    color: white;
    padding-top: 32px;
    padding-left: 16px;
    position: fixed;
    justify-content: space-evenly;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar h1 {
    font-size: 24px;
    font-weight: bolder;
}

.sidebar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-left: 0px;
    list-style-type: none;
}

.sidebar ul li a img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
    background-color: white;
    border-radius: 7px;
}

.sidebar ul li a img:hover {
    transform: scale(1.1);
}

.profile-pic {
    width: 180px;
    height: 200px;
    border-radius: 20%;
    object-fit: inherit;
    margin-bottom: 16px;
    border: 3px solid #fff;
}

.main-content {
    margin-left: 250px;
    padding-left: 32px;
    width: calc(100% - 250px);
}

.main-content h2 {
    font-family: cursive;
    font-weight: bolder;
}

.text-block {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 24px;
    color: #444;
    text-align: justify;
}


.grid {
    display: grid;
    gap: 32px;
}

.gridComponent {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gridComponent ul li {
    margin: 2px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.table th {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f3f4f6;
    font-weight: bolder;
    color: #1f2937;
}

.table tr:hover {
    background-color: #f9fafb;
}