/* Documentation Section */
.documentation {
    padding: 20px;
    /* background-color: #2E3B4E; */
    border-radius: 10px;
}

.doc-section {
    margin-bottom: 40px;
    font-size: 15px;
    color: #c0d0d6;
}

.doc-section table {
    color: #000;
}

.doc-section h2 {
    font-size: 2rem;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 10px;
}

.doc-section h3 {
    margin: 20px 0 10px;
}

.doc-section ul {
    margin-bottom: 20px;
}

.doc-section ul li {
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ffffff;
}

table th {
    background-color: #4752C4;
    color: #ffffff;
}

table td {
    background-color: #5865F2;
}

/* Footer */
.doc-footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #4752C4;
    border-radius: 5px;
}

.doc-footer p {
    font-size: 0.9rem;
    color: #cfd8dc;
}

/* Responsivo */
@media (max-width: 768px) {
    .doc-section td {
        font-size: 12px;
    }

    .doc-nav a {
        display: block;
        margin: 10px 0;
    }

    table th, table td {
        font-size: 0.9rem;
    }
}