body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0b0d13;
    color: white;
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

.docs-container {
    display: flex;
    width: 100%;
    margin: 0;
}

.sidebar {
    width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00eeff;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav ul li {
    margin-bottom: 10px;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar nav ul li a:hover,
.sidebar nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #00eeff;
}

.sidebar .other-products {
    margin-top: 30px;
}

.sidebar .other-products h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar .other-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .other-products ul li {
    margin-bottom: 8px;
}

.sidebar .other-products ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar .other-products ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #00eeff;
}

.content {
    flex: 1;
    padding: 20px 40px;
    max-width: 800px;
    margin-left: 50px;
}

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

.content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00eeff;
    position: relative;
}

.content h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.content ul,
.content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content ul li,
.content ol li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

a {
    color: #00eeff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.video-container {
    margin-top: 60px;
    border-radius: 10px;
    margin-left: 30px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

video {
    display: block;
    width: 80%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .content {
        margin-left: 0;
    }

    .content ol li {
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }
    
}


