/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #faf6ff;
    line-height: 1.6; /* Increased line height for better readability */
    display: flex; /* Added for flexible layout */
}

/* Container for the layout */
.container {
    display: flex; /* Flexbox for sidebar and content */
    height: 100vh; /* Full height */
}

/* Sidebar styles */
.sidebar {
    width: 250px;
    padding: 20px;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%; /* Full height of the container */
}

.sidebar h3 {
    margin-bottom: 30px; /* Increased margin for the sidebar title */
}

.sidebar a {
    display: block;
    margin: 15px 0; /* Increased space between menu items */
    color: var(--blue);
    text-decoration: none;
}

/* Content styles */
.content {
    flex: 1; /* Takes remaining space */
    padding: 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; /* Space below the top bar */
}

.top-bar h3 {
    margin: 0; /* Reset margin for the title */
}

h1, h2 {
    margin: 30px 0; /* Increased space before and after headings */
}

p, ul {
    margin-bottom: 20px; /* Space for paragraphs and lists */
}

.code-block {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 30px 0; /* Increased space around code block */
}

/* Footer styles */
footer {
    margin-top: 40px; /* Increased space above the footer */
    text-align: center;
    font-size: 0.9em;
}

/* Specific link styles */
.external-link {
    color: var(--grey-500); /* Blue color for external link */
}
