/* General page */
body.documentation {
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.documentation-header {
    text-align: center;
    margin-bottom: 50px;
}

.documentation-header h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
}

.header-description {
    font-size: 16px;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

/* Search section */
.search-section {
    margin-bottom: 40px;
}

.search-container {
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-input {
    border: none !important;
    padding: 12px 20px;
    width: 350px;
    outline: none;
}

.btn-search {
    background: #6c63ff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 500;
}

.btn-search:hover {
    background: #5851d8;
}

/* Documentation cards */
.doc-section {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.doc-section:hover {
    transform: translateY(-4px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.section-header i {
    font-size: 20px;
    color: #6c63ff;
}

.section-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.doc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.doc-list li {
    margin-bottom: 10px;
}

.doc-list li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.doc-list li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    color: #777;
}

.doc-list li a:hover {
    color: #6c63ff;
}
