/**
 * Shortcode styles for Hierarchical Posts plugin
 * Styles for [hp_menu] shortcode error messages
 *
 * @package Hierarchical_Posts
 */

/* Warning message - menu name not specified */
.hp-shortcode-warning {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    margin: 15px 0;
}

/* Error message - menu not found */
.hp-shortcode-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    margin: 15px 0;
}

.hp-shortcode-error strong {
    display: block;
    margin-bottom: 10px;
}

.hp-shortcode-error ul {
    margin: 10px 0;
    padding-left: 20px;
}

.hp-shortcode-error li {
    margin: 5px 0;
}

.hp-shortcode-error code {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.hp-shortcode-error small {
    display: block;
    margin-top: 10px;
    opacity: 0.8;
}
