table.wp-list-table .column-rdv_category_image { 
	width: 52px;
}
.rdv-category-thumbnail {
	margin: 10px 0;
}
.rdv-category-thumbnail img {
    max-width: 100px;
}
.rdv-admin-section {
    margin: 30px 30px 0 20px;
}
.rdv-admin-wrapper{
    background: white;
    box-shadow: 0 5px 30px rgb(0 0 0 / 10%);
    border-radius: 5px;
    color: #32373c;
}
.rdv-admin-wrapper h1 {
    font-size: 24px;
    font-weight: 400;
    color: #f1f1f1;
    background-color: #0085ba;
    padding: 20px;
    border-radius: 5px 5px 0 0;
}
.rdv-admin-content {
    margin: 20px;
    padding-bottom: 30px;
}
.rdv-admin-label {
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}
.rdv-admin-field {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
.rdv-admin-checkbox {
    position: relative;
    top: 2px;
}
.rdv-cat-img-shortcode {
    position: relative;
}
.rdv-copy-text {
    cursor: pointer;
    position: relative;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(200, 220, 255, 0.2)); /* Gradient for sheen */
    border-radius: 5px;
    backdrop-filter: blur(15px); /* Stronger blur for richer glass effect */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(150, 180, 255, 0.6); /* Brighter, softer blue border */
    box-shadow: 0 4px 12px rgba(0, 50, 200, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.5); /* Outer shadow + inner highlight */
    color: #1a1a1a; /* Dark text for contrast */
    display: inline-block;
    min-width: 100px; /* Prevents text overlap */
    text-align: center;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.rdv-copy-text:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(200, 220, 255, 0.3));
    box-shadow: 0 6px 16px rgba(0, 50, 200, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px); /* Slight lift for pop */
}
.rdv-copy-text:hover::before {
    content: "Click to copy";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 10;
    white-space: nowrap;
}
.rdv-copy-text.copied::before {
    content: " ✓ Copied!";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 10;
    white-space: nowrap;
}