/* ==========================================================================
   Text Editor Styles
   ========================================================================== */

.woppy-text-editor {
    margin-top: 10px;
}

.woppy-text-input {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    border: 1px solid #8c8f94;
    border-radius: 3px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
}

/* ==========================================================================
   Preview Page Layout - 3 Equal Columns
   ========================================================================== */

.woppy-preview-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.woppy-preview-col {
    min-width: 0; /* Prevents grid overflow */
}

/* Equal height cards */
.woppy-equal-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.woppy-equal-height .woppy-admin-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Allow scrolling if content is too tall */
}

@media (max-width: 1400px) {
    .woppy-preview-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .woppy-preview-col:last-child {
        grid-column: 1 / -1; /* Last column spans full width on 2-column layout */
    }
}

@media (max-width: 900px) {
    .woppy-preview-layout {
        grid-template-columns: 1fr;
    }
    
    .woppy-preview-col:last-child {
        grid-column: 1; /* Reset to single column on mobile */
    }
}

/* ==========================================================================
   Preview Page Styles
   ========================================================================== */

.woppy-prompt-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.woppy-prompt-section:last-child {
    margin-bottom: 0;
}

.woppy-prompt-section.woppy-prompt-section-border {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.woppy-prompt-section-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.woppy-prompt-section-title .dashicons {
    font-size: 18px;
    color: #0073aa;
}

.woppy-prompt-section h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.woppy-prompt-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.woppy-prompt-description {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.woppy-prompt-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.woppy-prompt-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.woppy-prompt-item.woppy-prompt-full {
    grid-column: 1 / -1;
}

.woppy-prompt-item label {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.woppy-prompt-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0073aa;
    margin: 0;
}

.woppy-prompt-item label span {
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
}

.woppy-prompt-select,
.woppy-prompt-input,
.woppy-prompt-textarea {
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.woppy-prompt-select:focus,
.woppy-prompt-input:focus,
.woppy-prompt-textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.woppy-prompt-textarea {
    resize: vertical;
    min-height: 80px;
}

/* ==========================================================================
   Preview Actions
   ========================================================================== */

.woppy-preview-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.woppy-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woppy-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.woppy-loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Pages Selection
   ========================================================================== */

.woppy-pages-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.woppy-pages-section-title {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.woppy-publishing-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.woppy-publishing-section-title {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.woppy-pages-category {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.woppy-pages-category h4 {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.woppy-pages-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woppy-page-item {
    display: flex;
    align-items: center;
}

.woppy-page-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid #e0e0e0;
}

.woppy-page-label:hover {
    background: #f8f9fa;
    border-color: #0073aa;
}

.woppy-page-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0073aa;
}

.woppy-page-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.woppy-page-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.woppy-page-icon.facebook {
    background: #1877f2;
    color: white;
}

.woppy-page-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.woppy-page-icon .dashicons {
    font-size: 18px;
}

.woppy-page-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.woppy-page-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.woppy-page-type {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woppy-no-pages,
.woppy-no-connections {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #ccc;
}

.woppy-no-pages .dashicons,
.woppy-no-connections .dashicons {
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 10px;
}

.woppy-no-pages p,
.woppy-no-connections p {
    margin: 0 0 15px 0;
    color: #666;
}

.woppy-no-connections {
    text-align: center;
    padding: 30px 20px;
    color: #666;
}

.woppy-no-connections .dashicons {
    font-size: 48px;
    color: #ffc107;
    margin-bottom: 15px;
    display: block;
}

.woppy-no-connections p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ==========================================================================
   Posts Preview
   ========================================================================== */

.woppy-posts-preview {
    min-height: 200px;
}

.woppy-preview-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.woppy-preview-empty .dashicons {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.woppy-preview-empty h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.woppy-preview-empty p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.woppy-loading-preview {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 14px;
}

.woppy-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woppy-posts-grid .woppy-post-preview {
    max-width: 100%;
}

/* ==========================================================================
   Post Preview Cards
   ========================================================================== */

.woppy-post-preview {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.woppy-post-preview:hover {
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.1);
}

.woppy-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.woppy-post-product {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.woppy-product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.woppy-product-details h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.woppy-product-price {
    font-size: 13px;
    color: #0073aa;
    font-weight: 600;
}

.woppy-post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woppy-post-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0073aa;
}

.woppy-post-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woppy-status-pending {
    background: #fff3cd;
    color: #856404;
}

.woppy-status-generated {
    background: #d1e7dd;
    color: #0f5132;
}

.woppy-status-published {
    background: #cfe2ff;
    color: #084298;
}

.woppy-status-error {
    background: #f8d7da;
    color: #842029;
}

.woppy-post-status .dashicons {
    font-size: 14px;
}

/* ==========================================================================
   Post Content
   ========================================================================== */

.woppy-post-content {
    padding: 20px;
    min-height: 100px;
}

.woppy-post-placeholder {
    text-align: center;
    color: #666;
    padding: 20px;
}

.woppy-post-placeholder .dashicons {
    font-size: 32px;
    color: #ddd;
    margin-bottom: 10px;
    display: block;
}

/* .woppy-post-text styles moved to Facebook-style section below to avoid conflicts */


/* ==========================================================================
   Publishing Controls
   ========================================================================== */

.woppy-publishing-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woppy-publishing-info {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0073aa;
}

.woppy-publishing-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.woppy-publishing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woppy-publishing-actions .button {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Loading Overlay
   ========================================================================== */

.woppy-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Prevent affecting text rendering in content below */
    pointer-events: none;
}

.woppy-loading-overlay .woppy-loading-content {
    pointer-events: auto;
}

.woppy-loading-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.woppy-loading-content .woppy-loading-spinner {
    font-size: 48px;
    color: #0073aa;
    margin-bottom: 20px;
    display: block;
}

.woppy-loading-content h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.woppy-loading-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
    .woppy-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .woppy-prompt-inputs {
        grid-template-columns: 1fr;
    }
    
    .woppy-preview-actions,
    .woppy-publishing-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .woppy-action-btn {
        justify-content: center;
    }
    
    .woppy-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .woppy-post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .woppy-post-actions {
        align-self: flex-end;
    }
    
    .woppy-loading-content {
        margin: 10px;
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Schedule Modal
   ========================================================================== */

.woppy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.woppy-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.woppy-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woppy-modal-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.woppy-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.woppy-modal-close:hover,
.woppy-modal-close:focus {
    color: #000;
}

.woppy-modal-body {
    padding: 30px;
}

.woppy-modal-description {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.woppy-datetime-picker {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woppy-datetime-picker label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.woppy-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.woppy-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.woppy-error-message {
    color: #d63638;
    font-size: 13px;
    padding: 8px 12px;
    background-color: #fcf0f1;
    border-left: 4px solid #d63638;
    border-radius: 4px;
}

.woppy-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.woppy-modal-footer .button {
    min-width: 120px;
}

@media (max-width: 480px) {
    .woppy-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .woppy-modal-header,
    .woppy-modal-body,
    .woppy-modal-footer {
        padding: 20px;
    }
    
    .woppy-post-product {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .woppy-product-thumb {
        width: 40px;
        height: 40px;
    }
    
    .woppy-post-content {
        padding: 15px;
    }
    
    .woppy-post-platforms {
        flex-direction: column;
        gap: 6px;
    }
}

/* ==========================================================================
   Facebook-Style Post Design
   ========================================================================== */

.woppy-post-preview {
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.woppy-post-preview:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Post Header - Author Section */
.woppy-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    border-bottom: none;
}

.woppy-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.woppy-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woppy-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.woppy-avatar-placeholder .dashicons {
    font-size: 20px;
    color: #fff;
}

.woppy-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.woppy-author-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1c1e21;
    line-height: 1.2;
}

.woppy-post-time {
    font-size: 13px;
    color: #65676b;
    line-height: 1.2;
}

/* Post Actions (Checkbox and Status) */
.woppy-post-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.woppy-post-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
}

.woppy-post-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.woppy-status-pending {
    background: #e4e6ea;
    color: #65676b;
}

.woppy-status-generated {
    background: #e7f3ff;
    color: #1877f2;
}

.woppy-status-published {
    background: #e7f3ff;
    color: #1877f2;
}

/* Post Content */
.woppy-post-content {
    padding: 0 16px 12px;
    background: #fff;
}

.woppy-post-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #f0f2f5;
    border-radius: 8px;
    color: #65676b;
    font-size: 14px;
}

.woppy-post-placeholder .dashicons {
    font-size: 16px;
}

.woppy-post-text {
    font-size: 15px !important;
    line-height: 1.38 !important;
    color: #1c1e21 !important;
    min-height: 20px;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: text;
}

.woppy-post-text:hover {
    background-color: #f8f9fa;
    border-color: #e4e6ea;
}

.woppy-post-text:focus,
.woppy-post-text-editing {
    outline: none;
    background-color: #fff;
    border-color: #1877f2;
    box-shadow: 0 0 0 2px rgba(24, 119, 242, 0.1);
}

.woppy-post-text p {
    margin: 0 0 8px 0;
    font-size: 15px !important;
    line-height: 1.38 !important;
    color: #1c1e21 !important;
}

.woppy-post-text p:last-child {
    margin-bottom: 0;
}

.woppy-post-text:empty:before {
    content: 'Click to edit text...';
    color: #8a8d91;
    font-style: italic;
}

/* Post Image Container */
.woppy-post-image-container {
    position: relative;
    background: #f0f2f5;
}

.woppy-post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.woppy-post-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 16px;
}

.woppy-product-info h4 {
    margin: 0 0 4px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.woppy-product-price {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Remove Generated Image Button */
.woppy-remove-generated-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #dc3545;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.woppy-remove-generated-image:hover {
    background: #dc3545;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.woppy-remove-generated-image:hover .dashicons {
    color: #fff;
}

.woppy-remove-generated-image .dashicons {
    color: #dc3545;
    font-size: 20px;
    width: 20px;
    height: 20px;
    transition: color 0.2s ease;
}

/* Image Selector */
.woppy-image-selector {
    position: relative;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.woppy-image-selector-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.woppy-image-selector-label .dashicons {
    font-size: 16px;
}

.woppy-image-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.woppy-image-thumb {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.woppy-image-thumb:hover {
    border-color: #0073aa;
    transform: scale(1.1);
}

.woppy-image-thumb.woppy-image-thumb-active {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}

.woppy-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.woppy-image-check {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: #0073aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.woppy-image-check .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Post Engagement */
.woppy-post-engagement {
    padding: 8px 16px 12px;
    background: #fff;
}

.woppy-engagement-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e4e6ea;
    margin-bottom: 8px;
}

.woppy-reactions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.woppy-reactions .dashicons {
    font-size: 16px;
    color: #1877f2;
    margin-right: -4px;
}

.woppy-reactions .dashicons:first-child {
    z-index: 3;
}

.woppy-reactions .dashicons:nth-child(2) {
    z-index: 2;
    color: #f02849;
}

.woppy-reactions .dashicons:nth-child(3) {
    z-index: 1;
    color: #fbbd00;
}

.woppy-engagement-count {
    font-size: 13px;
    color: #65676b;
    font-weight: 500;
}

.woppy-engagement-actions {
    display: flex;
    justify-content: space-around;
}

.woppy-engagement-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: 4px;
    color: #65676b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    flex: 1;
    justify-content: center;
}

.woppy-engagement-btn:hover {
    background: #f0f2f5;
}

.woppy-engagement-btn .dashicons {
    font-size: 18px;
}
