: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;
}

.installation-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 0;
    border-radius: 10px;
    margin-bottom: 30px;
}

.os-tabs .nav-link {
    border: none;
    padding: 12px 20px;
    font-weight: 500;
}

.os-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
}

.installation-step {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}

.installation-step:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.code-block {
    background-color: #2d2d2d;
    color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 15px 0;
    overflow-x: auto;
}

.code-block .command {
    color: #4cc9f0;
}

.code-block .comment {
    color: #6c757d;
}

.code-block .output {
    color: #e9ecef;
}

.requirement-list {
    list-style-type: none;
    padding-left: 0;
}

.requirement-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list .bi-check-circle-fill {
    color: var(--success-color);
}

.config-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);
}

.config-card:hover {
    transform: translateY(-5px);
}

.troubleshooting-item {
    border-left: 3px solid var(--warning-color);
    padding: 15px;
    background-color: rgba(255, 193, 7, 0.05);
    margin-bottom: 15px;
    border-radius: 0 5px 5px 0;
}

.verification-step {
    background-color: rgba(36, 150, 237, 0.05);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.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);
}

.platform-logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(36, 150, 237, 0.1);
    color: var(--dark-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(36, 150, 237, 0.25);
}
