: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;
}

.progress-demo {
    margin: 15px 0;
}

.progress-stacked-demo {
    margin: 15px 0;
}

.progress-animated-demo {
    margin: 15px 0;
}

.progress-custom-demo {
    margin: 15px 0;
}

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

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

.progress-custom {
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e9ecef;
}

.progress-custom .progress-bar {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    border-radius: 10px;
}

.progress-thin {
    height: 6px;
}

.progress-thick {
    height: 30px;
}

.progress-with-icon .progress-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-weight: bold;
}
