/* Shortcode specific styles */
.dbl-shortcode-container {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.dbl-shortcode-title {
    margin-top: 0;
    color: #333;
}

.dbl-shortcode-description {
    color: #666;
    margin-bottom: 20px;
}

/* Different button colors for shortcode */
.dbl-shortcode-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dbl-shortcode-btn-secondary {
    background: linear-gradient(135deg, #868f96 0%, #596164 100%);
    color: white;
}

.dbl-shortcode-btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.dbl-shortcode-btn-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
}

.dbl-shortcode-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dbl-shortcode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dbl-shortcode-history {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.dbl-shortcode-history h4 {
    margin: 0 0 10px 0;
    color: #555;
}

.dbl-history-items {
    max-height: 200px;
    overflow-y: auto;
}