.tld-shortcode-licenses {
    margin: 20px 0;
}

.tld-license-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.tld-license-wrapper:last-child {
    margin-bottom: 0;
}

.tld-license-wrapper strong {
    min-width: 160px;
    font-size: 12px;
    color: #666;
}

.tld-license-value {
    font-family: monospace;
    font-size: 13px;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid #e5e5e5;
    word-break: break-all;
}

.tld-copy-btn {
    cursor: pointer;
    color: #0073aa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid #0073aa;
    border-radius: 3px;
    background: #fff;
    font-size: 12px;
    transition: all 0.2s;
    position: relative;
    line-height: 1;
}

.tld-copy-btn:hover {
    background: #0073aa;
    color: #fff;
}

.tld-copy-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 3px;
    line-height: 1;
}

/* Green Tooltip Styling */
.tld-copy-tooltip {
    position: absolute;
    bottom: 120%;
    /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    /* Green */
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tooltip Arrow */
.tld-copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #28a745 transparent transparent transparent;
    /* Match background */
}

.tld-copy-tooltip.visible {
    opacity: 1;
    visibility: visible;
    bottom: 130%;
    /* Slight slide-up animation effect */
}

.tld-status {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.tld-status-sold {
    background: #28a745;
    color: #fff;
}

.tld-status-redeemed {
    background: #007bff;
    color: #fff;
}

.tld-status-expired {
    background: #dc3545;
    color: #fff;
}

.tld-license-image {
    margin-top: 10px;
}