/* Additional custom styles beyond Bootstrap */

/* Overall spacing and typography refinements */
body {
    line-height: 1.6;
}

/* Card refinements */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* Code blocks styling */
pre {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
}

code {
    color: #6cc3d5;
}

/* Feature list styling */
.feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Form elements focus states */
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-header h2 {
        font-size: 1.25rem;
    }
    
    pre {
        font-size: 0.85rem;
    }
}
