/* Prerequisites Checklist Styles - Include in base.html or page-specific styles */

/* Quick Setup Note Styles */
.quick-setup-note {
    background: #f0f8ff;
    border: 1px solid #b6d7ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem 0;
}

.quick-setup-note h2 {
    margin: 0 0 1rem 0;
    color: #1e40af;
}

/* Setup Checklist Styles */
.setup-checklist {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.setup-checklist h3 {
    margin: 0 0 1rem 0;
    color: #1e40af;
    font-size: 1.1rem;
}

.checklist-items {
    margin: 1rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.75rem 0;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checklist-item:hover {
    background: #f8fafc;
}

.checklist-item input[type="checkbox"] {
    margin-top: 0.125rem;
    transform: scale(1.1);
}

.checklist-item strong {
    color: #1e40af;
}

.setup-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.setup-link:hover {
    text-decoration: underline;
}

.success-note {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.375rem;
    padding: 1rem;
}

.success-note h4 {
    margin: 0 0 0.5rem 0;
    color: #15803d;
    font-size: 1rem;
}

.success-note p {
    margin: 0;
    color: #166534;
    font-size: 0.9rem;
}
