.wpvs-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
    position: relative;
}

.wpvs-video-container {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport for mobile */
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    background-color: #000;
}

.wpvs-video-item {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport for mobile */
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
}

.wpvs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide native video controls and play button */
.wpvs-video::-webkit-media-controls {
    display: none !important;
}

.wpvs-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.wpvs-video::-webkit-media-controls-panel {
    display: none !important;
}

.wpvs-video::-webkit-media-controls-play-button {
    display: none !important;
}

.wpvs-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.wpvs-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    z-index: 2;
}

.wpvs-video-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: white;
}

.wpvs-video-info p {
    margin: 0 0 10px;
    font-size: 14px;
    color: white;
    opacity: 0.9;
}

/* Video stats (likes, comments, uploader) */
.wpvs-video-stats {
    display: flex;
    gap: 15px;
    color: white;
}

.wpvs-uploader, .wpvs-likes, .wpvs-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wpvs-uploader .dashicons, .wpvs-likes .dashicons, .wpvs-comments .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

/* Interactive buttons for likes and comments - IMPROVED TO PREVENT VIDEO PAUSE */
.wpvs-interactive {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 15px;
    position: relative;
    z-index: 10; /* Higher z-index to prevent tap overlay interference */
}

.wpvs-interactive:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.wpvs-interactive:active {
    transform: scale(0.95);
}

.wpvs-likes.wpvs-interactive .dashicons.liked {
    color: #ff6b6b;
}

.wpvs-comments.wpvs-interactive:hover .dashicons {
    color: #4ecdc4;
}

/* Controls container */
.wpvs-controls {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Base control button styles */
.wpvs-control-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wpvs-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.wpvs-control-btn svg {
    width: 24px;
    height: 24px;
    color: white;
    fill: white;
}

/* Volume button specific styles */
.wpvs-volume-btn.unmuted {
    background-color: #5D5CDE;
}

/* Upload and manage button styles */
.wpvs-upload-btn, .wpvs-manage-btn {
    background-color: #5D5CDE;
}

.wpvs-upload-btn:hover, .wpvs-manage-btn:hover {
    background-color: #4a4bc9;
}

/* Play overlay - HIDDEN (videos autoplay anyway) */
.wpvs-play-overlay {
    display: none !important;
}

.wpvs-play-icon {
    width: 80px;
    height: 80px;
    color: white;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.wpvs-play-icon svg {
    width: 100%;
    height: 100%;
    color: white;
    fill: white;
}

/* ENHANCED Progress bar container with seeker functionality */
.wpvs-progress-container {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    z-index: 8; /* Higher than tap overlay */
    padding: 10px 0; /* Add padding for easier interaction */
}

.wpvs-progress-bar {
    width: 100%;
    height: 6px; /* Slightly thicker for better interaction */
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: visible; /* Allow seeker to extend beyond */
    position: relative;
    cursor: pointer;
    transition: height 0.2s ease;
}

.wpvs-progress-bar:hover {
    height: 8px; /* Expand on hover for better UX */
}

.wpvs-progress-fill {
    height: 100%;
    background-color: #5D5CDE;
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
    position: relative;
}

/* Progress seeker/scrubber */
.wpvs-progress-seeker {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 16px;
    height: 16px;
    background-color: #5D5CDE;
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.wpvs-progress-seeker:active {
    cursor: grabbing;
}

.wpvs-progress-bar:hover .wpvs-progress-seeker {
    opacity: 1;
}

.wpvs-progress-bar.seeking .wpvs-progress-seeker {
    opacity: 1;
}

/* Progress time tooltip */
.wpvs-progress-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.wpvs-progress-bar:hover .wpvs-progress-tooltip {
    opacity: 1;
}

/* Tap overlay for play/pause interaction - UPDATED */
.wpvs-tap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px; /* Don't cover progress bar area */
    z-index: 4;
    cursor: pointer;
}

/* Modal styles */
.wpvs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpvs-modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.wpvs-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.wpvs-modal-header h3 {
    margin: 0;
    color: #333;
}

.wpvs-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.wpvs-modal-close:hover {
    color: #333;
}

.wpvs-modal-body {
    padding: 20px;
}

/* Form styles */
.wpvs-form-group {
    margin-bottom: 20px;
}

.wpvs-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.wpvs-form-group input[type="text"],
.wpvs-form-group input[type="file"],
.wpvs-form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.wpvs-form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.wpvs-form-actions {
    margin-top: 20px;
}

.wpvs-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    margin-right: 10px;
}

.wpvs-btn-primary {
    background-color: #5D5CDE;
    color: white;
}

.wpvs-btn-primary:hover {
    background-color: #4a4bc9;
}

.wpvs-btn-danger {
    background-color: #dc3545;
    color: white;
}

.wpvs-btn-danger:hover {
    background-color: #c82333;
}

.wpvs-btn-secondary {
    background-color: #6c757d;
    color: white;
}

.wpvs-btn-secondary:hover {
    background-color: #545b62;
}

/* Enhanced Comment System Styles - YouTube Style */
.wpvs-comment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s ease;
}

.wpvs-comment-modal .wpvs-modal-content {
    background: white;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wpvs-comment-modal.show .wpvs-modal-content {
    transform: translateY(0);
}

.wpvs-comment-modal .wpvs-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    flex-shrink: 0;
}

.wpvs-comment-modal .wpvs-modal-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: #dadce0;
    border-radius: 2px;
}

.wpvs-comment-modal .wpvs-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.wpvs-comment-modal .wpvs-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpvs-comment-modal .wpvs-modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.wpvs-comment-modal .wpvs-modal-body {
    padding: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wpvs-comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    scroll-behavior: smooth;
}

.wpvs-comment-form {
    padding: 16px 20px 20px;
    border-top: 1px solid #e5e5e5;
    background: white;
    flex-shrink: 0;
}

.wpvs-comment-form textarea {
    width: 100%;
    margin-bottom: 12px;
    font-size: 16px; /* Prevent zoom on mobile */
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 12px 16px;
    resize: none;
    min-height: 44px;
    max-height: 120px;
    font-family: inherit;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.wpvs-comment-form textarea:focus {
    outline: none;
    border-color: #5D5CDE;
    box-shadow: 0 0 0 2px rgba(93, 92, 222, 0.1);
    background: white;
}

.wpvs-comment-form .wpvs-form-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.wpvs-comment-form .wpvs-btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wpvs-comment-item {
    padding: 16px 0;
    border-bottom: none;
    position: relative;
    display: flex;
    gap: 12px;
}

.wpvs-comment-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.wpvs-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5D5CDE, #8b87ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.wpvs-comment-content {
    flex: 1;
    min-width: 0;
}

.wpvs-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.wpvs-comment-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.wpvs-comment-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wpvs-comment-date {
    font-size: 12px;
    color: #999;
    line-height: 1;
    white-space: nowrap;
}

.wpvs-comment-menu {
    position: relative;
    flex-shrink: 0;
}

.wpvs-comment-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    color: #666;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpvs-comment-menu-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.wpvs-comment-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.wpvs-comment-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wpvs-comment-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
    border-radius: 0;
}

.wpvs-comment-dropdown button:hover {
    background-color: #f8f9fa;
}

.wpvs-comment-dropdown button:first-child {
    border-radius: 12px 12px 0 0;
}

.wpvs-comment-dropdown button:last-child {
    border-radius: 0 0 12px 12px;
}

.wpvs-comment-dropdown button.wpvs-comment-delete:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

.wpvs-comment-text {
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 14px;
    word-wrap: break-word;
}

.wpvs-comment-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.wpvs-comment-actions button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    border-radius: 16px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.wpvs-comment-actions button:hover {
    background-color: #f5f5f5;
    color: #333;
}

.wpvs-comment-like.active {
    color: #065fd4;
    background-color: rgba(6, 95, 212, 0.1);
}

.wpvs-comment-dislike.active {
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
}

.wpvs-comment-reply-btn:hover {
    color: #065fd4;
    background-color: rgba(6, 95, 212, 0.1);
}

/* Reply count and toggle styles - YouTube Style */
.wpvs-replies-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: #065fd4;
    font-weight: 600;
    padding: 8px 0;
    margin-top: 4px;
    transition: all 0.2s ease;
    border-radius: 16px;
}

.wpvs-replies-toggle:hover {
    background-color: rgba(6, 95, 212, 0.1);
    padding: 8px 12px;
}

.wpvs-replies-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    fill: currentColor;
}

.wpvs-replies-toggle.expanded svg {
    transform: rotate(90deg);
}

/* Reply styles - Clean indentation */
.wpvs-comment-replies {
    margin-left: 44px;
    margin-top: 12px;
    display: none;
    position: relative;
}

.wpvs-comment-replies.show {
    display: block;
}

.wpvs-comment-reply {
    background-color: transparent;
    border-radius: 0;
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

.wpvs-comment-reply:last-child {
    border-bottom: none;
}

.wpvs-comment-reply .wpvs-comment-avatar {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.wpvs-comment-reply .wpvs-comment-text {
    margin-bottom: 8px;
}

.wpvs-comment-reply .wpvs-comment-actions {
    margin-bottom: 4px;
}

/* User videos grid */
.wpvs-user-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.wpvs-user-video-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.wpvs-user-video-preview {
    aspect-ratio: 9/16;
    background: #000;
    position: relative;
}

.wpvs-user-video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpvs-user-video-info {
    padding: 10px;
}

.wpvs-user-video-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
    color: #333;
}

.wpvs-user-video-info p {
    margin: 0 0 10px;
    font-size: 12px;
    color: #666;
}

.wpvs-user-video-actions {
    display: flex;
    gap: 5px;
}

.wpvs-user-video-actions button {
    flex: 1;
    padding: 5px;
    font-size: 12px;
}

/* No videos message */
.wpvs-no-videos {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
    background-color: #222;
    text-align: center;
    padding: 20px;
}

.wpvs-no-user-videos {
    text-align: center;
    color: #666;
    padding: 40px 20px;
}

/* Dark mode support for comments */
@media (prefers-color-scheme: dark) {
    .wpvs-modal-content {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .wpvs-comment-modal .wpvs-modal-content {
        background: #1a1a1a;
    }
    
    .wpvs-modal-header {
        border-bottom-color: #333;
    }
    
    .wpvs-modal-header h3 {
        color: #e0e0e0;
    }
    
    .wpvs-comment-form {
        background: #1a1a1a;
        border-top-color: #333;
    }
    
    .wpvs-comment-form textarea {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .wpvs-comment-form textarea:focus {
        background: #333;
    }
    
    .wpvs-comment-item {
        border-bottom-color: #333;
    }
    
    .wpvs-comment-author {
        color: #e0e0e0;
    }
    
    .wpvs-comment-text {
        color: #c0c0c0;
    }
    
    .wpvs-comment-menu-btn {
        color: #999;
    }
    
    .wpvs-comment-menu-btn:hover {
        background-color: #333;
        color: #e0e0e0;
    }
    
    .wpvs-comment-dropdown {
        background: #2a2a2a;
        border-color: #444;
    }
    
    .wpvs-comment-dropdown button {
        color: #e0e0e0;
    }
    
    .wpvs-comment-dropdown button:hover {
        background-color: #333;
    }
    
    .wpvs-comment-actions button {
        color: #999;
    }
    
    .wpvs-comment-actions button:hover {
        background-color: #333;
        color: #e0e0e0;
    }
    
    .wpvs-comment-reply {
        background-color: transparent;
    }
    
    .wpvs-form-group input,
    .wpvs-form-group textarea {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .wpvs-form-group label {
        color: #e0e0e0;
    }
}

/* Media queries for mobile */
@media (max-width: 600px) {
    .wpvs-video-container {
        height: 100vh;
    }
    
    .wpvs-container {
        max-width: 100%;
    }
    
    .wpvs-controls {
        top: 45px;
        right: 15px;
        gap: 12px;
    }
    
    .wpvs-control-btn {
        width: 36px;
        height: 36px;
    }
    
    .wpvs-control-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .wpvs-play-icon {
        width: 60px;
        height: 60px;
    }
    
    .wpvs-progress-container {
        bottom: 0;
        left: 15px;
        right: 15px;
        padding: 15px 0; /* More padding on mobile for easier touch */
    }
    
    .wpvs-progress-bar {
        height: 8px; /* Thicker on mobile */
    }
    
    .wpvs-progress-seeker {
        width: 20px;
        height: 20px; /* Larger seeker on mobile */
    }
    
    .wpvs-modal-content {
        width: 95%;
        margin: 20px;
        max-height: 90vh;
    }
    
    .wpvs-comment-modal .wpvs-modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .wpvs-comments-list {
        padding: 12px 16px;
    }
    
    .wpvs-comment-form {
        padding: 12px 16px 16px;
    }
    
    .wpvs-comment-item {
        padding: 12px 0;
        gap: 10px;
    }
    
    .wpvs-comment-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .wpvs-user-videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .wpvs-tap-overlay {
        bottom: 80px; /* Larger bottom margin on mobile */
    }
    
    .wpvs-comment-replies {
        margin-left: 38px;
    }
    
    .wpvs-comment-actions {
        gap: 8px;
    }
    
    .wpvs-comment-actions button {
        font-size: 11px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .wpvs-comment-dropdown {
        right: -10px;
        min-width: 140px;
    }
    
    .wpvs-replies-toggle {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* Support for devices with notches and safe areas - REMOVED TO FIX GAP */

/* Overrides for WordPress themes */
body.wp-admin .wpvs-container {
    margin-top: 32px;
}

@media (max-width: 782px) {
    body.wp-admin .wpvs-container {
        margin-top: 46px;
    }
}

/* Video controls are already hidden globally above */

/* Regular landscape handling */
@media (max-width: 900px) and (orientation: landscape) {
    .wpvs-video-item {
        padding-bottom: 10px;
    }
    
    .wpvs-video-info {
        bottom: 30px;
    }
    
    .wpvs-progress-container {
        bottom: 10px;
    }
}

/* Animation for comment interactions */
@keyframes commentLike {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.wpvs-comment-like.active svg,
.wpvs-comment-dislike.active svg {
    animation: commentLike 0.3s ease;
}

/* Smooth transitions for dropdown menus */
.wpvs-comment-dropdown button svg {
    transition: transform 0.2s ease;
}

.wpvs-comment-dropdown button:hover svg {
    transform: scale(1.1);
}

/* Comment modal slide-up animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.wpvs-comment-modal.show .wpvs-modal-content {
    animation: slideUp 0.3s ease-out;
}

/* Auto-growing textarea */
.wpvs-comment-form textarea {
    resize: none;
    transition: height 0.2s ease;
}

/* Empty state styling */
.wpvs-comments-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.wpvs-comments-empty svg {
    width: 48px;
    height: 48px;
    color: #ddd;
    margin-bottom: 16px;
}