﻿@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.docsMain {
    top: 10vh !important;
    max-width: 1000px !important;
}

.docs-container {
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.docs-header {
    text-align: center;
    margin-bottom: 40px;
}

.docs-header h1 {
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Silkscreen", sans-serif;
}

.docs-title-accent {
    color: #CD78FF;
}

.docs-subtitle {
    font-size: 16px;
    color: #C2C2C2;
    margin-bottom: 0;
    font-weight: 400;
}

.docs-navigation {
    margin-bottom: 30px;
    position: sticky;
    top: 70px;
    z-index: 100;
    background-color: #303030;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #454545;
}

.docs-nav-container {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.docs-nav-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.docs-sidebar {
    display: flex;
    justify-content: center;
}

.docs-nav-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.docs-nav-link {
    display: block;
    padding: 8px 16px;
    color: #C2C2C2;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.docs-nav-link:hover {
    color: #fff;
    background-color: rgba(205, 120, 255, 0.1);
}

.docs-nav-link.active {
    color: #fff;
    background-color: rgba(205, 120, 255, 0.2);
    position: relative;
}

.docs-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #CD78FF;
    border-radius: 2px;
}

.docs-section {
    margin-bottom: 50px;
    background-color: #303030;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #454545;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.docs-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.docs-section-icon {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    color: #CD78FF;
}

.docs-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.docs-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #E0E0E0;
    
}

.docs-image-container {
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #454545;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.docs-image {
    width: 100%;
    display: block;
}

.docs-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 6px;
    border-bottom: 1px solid #454545;
}

.docs-steps {
    padding-left: 20px;
    margin-bottom: 25px;
    color: #E0E0E0;
}

.docs-steps li {
    margin-bottom: 15px;
    position: relative;
}

.docs-steps li strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.docs-tips {
    background-color: rgba(205, 120, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #CD78FF;
    margin-top: 25px;
}

.docs-tips h4 {
    font-size: 16px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.docs-tips ul {
    margin-bottom: 0;
    padding-left: 20px;
    color: #E0E0E0;
}

.docs-tips li {
    margin-bottom: 8px;
}

.docs-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.docs-tool-card {
    background-color: #3a3a3a;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.docs-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(205, 120, 255, 0.1);
}

.docs-tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #CD78FF;
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
}

.docs-tool-card h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #fff;
}

.docs-tool-card p {
    font-size: 14px;
    color: #E0E0E0;
    margin: 0;
}

.docs-shortcuts {
    margin-bottom: 25px;
}

.docs-shortcuts-table {
    width: 100%;
    border-collapse: collapse;
}

.docs-shortcuts-table tr {
    border-bottom: 1px solid #454545;
}

.docs-shortcuts-table td {
    padding: 12px 10px;
    color: #E0E0E0;
}

.docs-shortcuts-table td:first-child {
    width: 35%;
    font-weight: 500;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .docs-container {
        padding: 20px 15px;
    }
    
    .docs-header {
        margin-bottom: 30px;
    }
    
    .docs-header h1 {
        font-size: 24px;
    }
    
    .docs-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .docs-tools-grid {
        grid-template-columns: 1fr;
    }
}