:root {
    --primary-color: #6f42c1;
    /*--secondary-color: #6c757d;*/
    --success-color: #198754;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6efd 100%);
    color: white;
    padding: 10px 0;
    margin-bottom: 10px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
}

.example-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.example-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.example-body {
    padding: 25px 20px;
}

.example-footer {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

.code-container {
    background-color: #282c34;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
}
.btn-group-custom {
    margin: 5px;
}

.section-title {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}
