body {
    font-family: sans-serif;
    margin: 0;
}

.navbar {
    background: #004080;
    color: white;
    padding-top: 15px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
}

.main {
    display: flex;
    height: calc(100vh - 50px);
}

.sidebar {
    width: 220px;
    background: #f0f4f8;
    padding: 25px 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 14px 0;
}

.sidebar a {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
}

.sidebar .submenu {
    margin-left: 18px;
}

.main-content {
    flex: 1;
    background: #fff;
    /*padding: 36px 42px;*/
}

.search-bar {
    margin-bottom: 28px;
}

.search-bar input {
    width: 350px;
    font-size: 1rem;
    padding: 7px 13px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Sasha's CSS */

.card {
    min-width: 75% !important;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-header img {
    border-radius: 12px;
    width: 120px;
    height: auto;
}

.card-header .info {
    flex-grow: 1;
    margin-left: 20px;
}

.card-header h1 {
    margin: 0 0 10px;
    font-size: 28px;
}

.card-header p {
    margin: 4px 0;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

table th, table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.section-title {
    font-size: 20px;
    margin: 30px 0 10px;
    color: #333;
    border-left: 4px solid #0077cc;
    padding-left: 10px;
}

.socials a {
    margin-right: 15px;
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
}