:root {
    --primary-color: #6f42c1;
    /*--secondary-color: #e83e8c;*/
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}


.content-area {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    /*padding: 30px;*/
}

.content-area h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.content-area h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-area h3 {
    color: var(--dark-color);
    margin-top: 25px;
}

.content-area p {
    color: #6c757d;
}

.content-area .card {
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.content-area .card:hover {
    transform: translateY(-5px);
}

.content-area .card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.code-example {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}


.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 0;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.hero-section h1 {
    color: white;
    border: none;
}

.table-demo {
    margin: 20px 0;
}

.table-demo .table {
    margin-bottom: 0;
}

.table-example {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.table-responsive-demo {
    max-width: 100%;
    overflow-x: auto;
}

.method-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.method-card:hover {
    border-left-color: var(--secondary-color);
}

.table-hover tbody tr:hover {
    background-color: rgba(111, 66, 193, 0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}
