/* Example header */
.example-header {
    padding-top: 50px;
}

/* Example section container */
.example-section {
    padding: 50px 50px;
    border: 1px solid #e9ecef;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* Form styles - scoped to example section */
.example-section .demo-form {
    max-width: 400px;
}

.example-section .form-group {
    margin-bottom: 1rem;
}

.example-section .form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

.example-section .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.example-section .form-group input:focus {
    border-color: #007acc;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.25);
}

.example-section .demo-form .btn-primary {
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 1rem;
}

.example-section .demo-form .help-text {
    font-size: .9rem;
}

/* Footnotes section */
.example-list {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.example-list h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.example-list ul {
    margin-left: 1.5rem;
}

.example-list li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.example-list strong {
    color: #2c3e50;
}