.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-6c104300 *//* Main container styling */
.wptb-table-container-82 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px 0;
}

/* Table styling */
.wptb-preview-table {
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    background: #ffffff;
}

/* Header row styling */
.wptb-preview-table tr:first-child {
    background: linear-gradient(135deg, #d1242a 0%, #d1242a 100%) !important;
}

.wptb-preview-table tr:first-child td {
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 18px 20px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px !important;
}

.wptb-preview-table tr:first-child .wptb-text-container p {
    color: #ffffff !important;
    margin: 0;
}

/* Regular row styling */
.wptb-preview-table tr:not(:first-child) {
    background: #ffffff !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

/* Alternating row colors - more subtle */
.wptb-preview-table tr:nth-child(even):not(:first-child) {
    background: #f8f9fa !important;
}

.wptb-preview-table tr:nth-child(odd):not(:first-child) {
    background: #ffffff !important;
}

/* Hover effect for data rows */
.wptb-preview-table tr:not(:first-child):hover {
    background: #e8f4fd !important;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Cell styling */
.wptb-cell {
    border: none !important;
    padding: 16px 20px !important;
    vertical-align: middle !important;
}

/* Company logo column styling */
.wptb-cell:first-child:not(:first-child) {
    width: 45%;
}

/* Website link column styling */
.wptb-cell:last-child {
    width: 55%;
}

/* Image container improvements */
.wptb-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.wptb-image-wrapper {
    max-width: 180px;
    width: 100%;
}

.wptb-image-wrapper img {
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover effect on images */
.wptb-preview-table tr:hover .wptb-image-wrapper img {
    transform: scale(1.05);
}

/* Link styling */
.wptb-text-container a {
    color: #2980b9 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 2px 0;
}

/* Link hover effect with underline animation */
.wptb-text-container a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2980b9;
    transition: width 0.3s ease;
}

.wptb-text-container a:hover {
    color: #1a5f8a !important;
}

.wptb-text-container a:hover::after {
    width: 100%;
}

/* Remove default paragraph margins */
.wptb-text-container p {
    margin: 0 !important;
}

/* Add subtle animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wptb-preview-table tr {
    animation: fadeInUp 0.5s ease forwards;
}

.wptb-preview-table tr:nth-child(1) { animation-delay: 0.1s; }
.wptb-preview-table tr:nth-child(2) { animation-delay: 0.15s; }
.wptb-preview-table tr:nth-child(3) { animation-delay: 0.2s; }
.wptb-preview-table tr:nth-child(4) { animation-delay: 0.25s; }
.wptb-preview-table tr:nth-child(5) { animation-delay: 0.3s; }
.wptb-preview-table tr:nth-child(6) { animation-delay: 0.35s; }
.wptb-preview-table tr:nth-child(7) { animation-delay: 0.4s; }

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .wptb-cell {
        padding: 12px 15px !important;
    }
    
    .wptb-image-wrapper {
        max-width: 120px;
    }
    
    .wptb-image-wrapper img {
        max-height: 40px !important;
    }
    
    .wptb-text-container a {
        font-size: 14px;
    }
    
    .wptb-preview-table tr:not(:first-child):hover {
        transform: none;
    }
}

/* Optional: Add a title above the table if needed */
.webshops-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-left: 5px;
}

/* Optional: Add status indicators */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #27ae60;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}/* End custom CSS */