/* Additional plugin styles */
.thumbnail-result, .tag-result, .details-result {
    min-height: 100px;
    transition: all 0.3s ease;
}

.how-to-use {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.how-to-use h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.how-to-use ol {
    padding-left: 20px;
}

.how-to-use li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Loading states */
.loading-container {
    text-align: center;
    padding: 40px;
}

/* Success/error states */
.success-message {
    color: #00ff88;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    margin: 10px 0;
}

.error-message {
    color: #ff6b6b;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 5px;
    margin: 10px 0;
}