
body {
    margin: 0;
    font-family: Verdana, sans-serif;
    background-color: #f1f1f1;
}

.header {
    background: linear-gradient(to bottom, #3a6ea5, #1f4e79);
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 40px;
    margin-right: 10px;
}

.header .menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.header .menu a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    margin: 30px;
}

.sidebar {
    width: 250px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin-right: 30px;
}

.content {
    flex: 1;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.profile-pic {
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

h2 {
    margin-top: 0;
}

.button {
    background: #3a6ea5;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
}

.button:hover {
    background: #2a5382;
}
