/* Basic reset to remove default margins */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex; /* Sets up the left/right layout */
}

/* --- Left Pane Styling --- */
.left-pane {
    width: 33.33%;
    height: 100vh; /* Takes up the full height of the screen */
    position: fixed; /* Keeps this side from scrolling */
    background-color: #f4f4f4;
    padding: 40px;
    text-align: center;
    border-right: 1px solid #ddd;
}

.profile-photo {
    width: 100%;
    max-width: 250px;
    border-radius: 8px; /* Optional: adds rounded corners to the image */
    margin-bottom: 20px;
}

/* --- Right Pane Styling --- */
.right-pane {
    width: 66.67%;
    min-height: 100vh;
    margin-left: 33.33%; /* Pushes this pane to the right to clear the fixed left pane */
    padding: 40px;
}

/* --- Menu Styling --- */
.menu {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
}

.menu a:hover {
    color: #0066cc; /* Color changes when you hover over the link */
}
