/* Shortcode Component Styles
 * Extracted from functions.php for better organization and maintainability
 */

.shortcode-attachments {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f9f9f9;
}

.shortcode-attachments h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.shortcode-attachments h4 {
    color: #666;
    margin: 15px 0 10px 0;
}

.shortcode-attachments .file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shortcode-attachments .file-list li {
    margin: 8px 0;
}

.shortcode-attachments .file-link {
    text-decoration: none;
    color: #0073aa;
    padding: 5px 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: inline-block;
    transition: background-color 0.3s;
}

.shortcode-attachments .file-link:hover {
    background: #f0f0f0;
    text-decoration: none;
}

.shortcode-attachments .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.shortcode-attachments .gallery-item {
    flex: 0 0 auto;
}

.shortcode-attachments .gallery-item img {
    max-width: 150px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: transform 0.2s;
}

.shortcode-attachments .gallery-item img:hover {
    transform: scale(1.05);
}
