body {
    font-family: 'Georgia', serif;
    background-color: #f5f2e7;
    color: #2e2b23;
    margin: 0;
    padding: 0;
    display: flex;
}
/* Navigation */
nav {
    background-color: rgba(220, 200, 150, 0.9);
    padding: 20px;
    width: 200px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    overflow-y: auto;
    border-right: 2px solid #6b4226;
    transition: transform;
    transform: translateX(0%);
    z-index: 100;
}
nav h2 {
    margin-top: 40px;
}
nav.hidden {
    transform: translateX(-100%);
}
nav ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
nav ul li {
    margin-bottom: 10px;
}
nav a {
    color: #2e2b23;
    text-decoration: none;
}
.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 45px;
    background-color: rgba(220, 200, 150, 1);
    z-index: 200;
    visibility: hidden;
}
.nav-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #6b4226;
    position: relative;
    transition: transform;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
}
.nav-toggle span::before {
    top: -8px;
}
.nav-toggle span::after {
    top: 8px;
}
main {
    margin-left: 220px;
    padding: 50px;
    width: 100%;
    max-width: 900px;
}
.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    background-color: #dbd8cc;
    border-left: solid 1px gray;
    border-right: solid 1px gray;
    padding: 1rem;
    box-sizing: border-box;
}
header {
    text-align: center;
    margin-bottom: 40px;
}
h1, h2, h3 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: #6b4226;
}
h4{
    color: #6b4226;
}
.spell-card h4{
    color:black;
}
section {
    margin-bottom: 40px;
}

.table-container {
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 80vh;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th{
    background-color: #d8c3a5;
}
td {
    background-color: white;
}
th, td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
/* Sticky header for tables */
.table-container table thead {
    display: table-header-group;
}
.table-container table thead th {
    position: sticky;
    top: -1px;
}
   
.feature {
    margin-bottom: 20px;
}
.path, .spell-section {
    background-color: #efe7dd;
    padding: 15px;
    border-left: 5px solid #6b4226;
    border-radius: 8px;
    margin-bottom: 20px;
}
.path ul li, .spell-section ul li {
    margin-bottom: 10px;
}
/* Mobile styles */
@media (max-width: 850px) {
    .header {
        visibility: visible;
    }
    body{
        padding: 1rem;
    }
    main {
        max-width: 100%;
        margin-top: 20px;
    }
    nav {
        transform: translateX(0%);
        width: 200px;
    }
    .nav-toggle {
        display: block;
    }
    main {
        margin-left: 0;
        padding: 10px;
    }
}