/* assets/style.css */
.content {
    line-height: 1.6;
    color: #333;
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content h2 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
}

.content img {
    max-width: 100%;
    height: auto;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.table-responsive {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .sidebar {
        height: auto;
        position: relative;
    }
}