/* Admin Columns Styles */
.urlshbym-url-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.urlshbym-short-url {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    background: #f0f0f1;
    padding: 4px 8px;
    border-radius: 3px;
    color: #2271b1;
    font-weight: 500;
}

.urlshbym-copy-btn {
    padding: 4px 8px !important;
    height: auto !important;
    line-height: 1 !important;
    min-height: 0 !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.urlshbym-copy-btn .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
}

.urlshbym-copy-btn:hover {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.urlshbym-copy-btn:active {
    transform: scale(0.95);
}

.urlshbym-copied-message {
    color: #00a32a;
    font-weight: 600;
    font-size: 12px;
    animation: urlshbym-fade-in 0.3s ease;
}

@keyframes urlshbym-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive ajustments */
@media screen and (max-width: 782px) {
    .urlshbym-url-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .urlshbym-copy-btn {
        width: 100%;
    }
}