:root {
    --primary-color: #2496ed;
    /*--secondary-color: #0d6efd;*/
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #198754;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

.concepts-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 0;
    border-radius: 10px;
    margin-bottom: 30px;
}

.concept-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-bottom: 25px;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.concept-card:hover {
    transform: translateY(-5px);
}

.concept-icon {
    background-color: rgba(36, 150, 237, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.command-category {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.command-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.command-table th {
    background-color: var(--primary-color);
    color: white;
}

.command-example {
    background-color: #2d2d2d;
    color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 15px 0;
    overflow-x: auto;
}

.command-example .command {
    color: #4cc9f0;
}

.command-example .comment {
    color: #6c757d;
}

.command-example .output {
    color: #e9ecef;
}

.architecture-diagram {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.nav-pills .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    border: 1px solid #dee2e6;
    margin-right: 5px;
    margin-bottom: 5px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.workflow-step {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

.workflow-step:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.workflow-step:after {
    content: '';
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.workflow-step:last-child:after {
    display: none;
}

.interactive-demo {
    background-color: rgba(36, 150, 237, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.demo-terminal {
    background-color: #2d2d2d;
    color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 15px 0;
    min-height: 200px;
}

.demo-input {
    background-color: transparent;
    border: none;
    color: #4cc9f0;
    font-family: 'Courier New', monospace;
    width: 100%;
    outline: none;
}

.cheat-sheet {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.cheat-item {
    padding: 10px 15px;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 10px;
    background-color: rgba(36, 150, 237, 0.05);
}
