/* Documentation Content Styling Components */
/* Utility classes for styling content within documentation pages */

/* Information Box - Blue bordered callout with light background */
.doc-info-box {
    border-left: 4px solid var(--color-accent);
    padding: 15px 15px 15px 20px;
    margin: 20px 0;
    background: var(--color-gray-100);
    border-radius: 0 0.375rem 0.375rem 0;
}

.doc-info-box h3 {
    color: var(--color-accent);
    margin-top: 0;
}

/* Pro Feature Box - Purple gradient showcase box */
.doc-pro-feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.doc-pro-feature h2,
.doc-pro-feature h3 {
    margin-top: 0;
}

.doc-pro-feature p {
    margin-bottom: 0;
}

.doc-pro-feature p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .doc-info-box,
    .doc-pro-feature {
        padding: 15px;
        margin: 15px 0;
    }
}
