html {
    scroll-behavior: smooth;
}

body {
    background: #f5f7fb;
}

.docs-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    padding: 30px 20px;
}

.docs-sidebar h3 {
    font-weight: 700;
}

.docs-sidebar .nav-link {
    color: #444;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: .2s;
}

.docs-sidebar .nav-link:hover {
    background: #0d6efd;
    color: #fff;
}

.docs-content {
    padding: 40px;
}

.docs-content h1,
.docs-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.docs-content section {
    margin-bottom: 60px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.code-block {
    background: #1e293b;
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 14px;
}

pre {
    margin-bottom: 0;
}

table {
    background: #fff;
}

.alert {
    border-radius: 12px;
}

@media(max-width:768px){

.docs-sidebar{

position:relative;

height:auto;

border-right:none;

border-bottom:1px solid #ddd;

}

.docs-content{

padding:20px;

}

}