/* Basic styling */
.cmntbe-wrap {
    padding: 0 20px 20px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.cmntbe-header {
    background: #2c3338; /* WordPress dark gray */
    color: white;
    padding: 30px;
    margin: 0 -20px 30px;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.cmntbe-title-section h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.cmntbe-title-section .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #00a0d2; /* WordPress blue */
}

.cmntbe-subtitle {
    margin: 0px 0px 0px 12px;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 400;
}

/* Stats Grid */
.cmntbe-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cmntbe-stat-card {
    background: white;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #dcdcde;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cmntbe-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cmntbe-tooltip {
    position: absolute;
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10000;
    max-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cmntbe-tooltip:after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #1e293b;
}

.cmntbe-stat-icon.total { background: #2c3338; }
.cmntbe-stat-icon.beautified { background: #46b450; } /* WordPress green */
.cmntbe-stat-icon.awaiting { background: #ffb900; } /* WordPress yellow */
.cmntbe-stat-icon.withlink { background: #00a0d2; } /* WordPress blue */

.cmntbe-stat-icon .dashicons {
    color: white;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.cmntbe-stat-number {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}

.cmntbe-stat-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

/* Filter Bar */
.cmntbe-filter-bar {
    background: white;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #dcdcde;
}

.cmntbe-search-box {
    position: relative;
    margin-bottom: 20px;
}

.cmntbe-search-box .dashicons {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

#cmntbe-search-input {
    width: 100%;
    padding: 10px 10px 10px 48px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

#cmntbe-search-input:focus {
    outline: none;
    border-color: #00a0d2;
    box-shadow: 0 0 0 2px rgba(0, 160, 210, 0.1);
}

.cmntbe-filter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cmntbe-filter-group {
    display: flex;
    gap: 20px;
}

/* Toggle Switches */
.cmntbe-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cmntbe-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cmntbe-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dcdcde;
  transition: .2s;
  border-radius: 24px;
}

.cmntbe-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}

.cmntbe-toggle-switch input:checked + .cmntbe-toggle-slider {
  background-color: #00a0d2;
}

.cmntbe-toggle-switch input:checked + .cmntbe-toggle-slider:before {
  transform: translateX(20px);
}

.cmntbe-filter-label {
    font-weight: 500;
    color: #374151;
}

.cmntbe-select {
    padding: 8px 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    min-width: 160px;
}

.cmntbe-bulk-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.cmntbe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 14px;
    background: white;
}

.cmntbe-btn.primary {
    background: #00a0d2;
    border-color: #00a0d2;
    color: white;
}

.cmntbe-btn.primary:hover {
    background: #0085ba;
    border-color: #0085ba;
}

.cmntbe-btn.secondary {
    background: white;
    border-color: #dcdcde;
    color: #64748b;
}

.cmntbe-btn.secondary:hover {
    border-color: #00a0d2;
    color: #00a0d2;
}

.cmntbe-btn.success {
    background: #46b450;
    border-color: #46b450;
    color: white;
}

.cmntbe-btn.success:hover {
    background: #3a9a43;
    border-color: #3a9a43;
}

.cmntbe-btn.warning {
    background: #ffb900;
    border-color: #ffb900;
    color: white;
}

.cmntbe-btn.warning:hover {
    background: #e6a700;
    border-color: #e6a700;
}

/* Action Bar */
.cmntbe-action-bar {
    background: white;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 20px;
    border: 1px solid #dcdcde;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cmntbe-selection-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cmntbe-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}

.cmntbe-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #dcdcde;
    border-radius: 3px;
    position: relative;
    transition: all 0.2s ease;
}

.cmntbe-checkbox input:checked + .cmntbe-checkmark {
    background: #00a0d2;
    border-color: #00a0d2;
}

.cmntbe-checkbox input:checked + .cmntbe-checkmark:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cmntbe-checkbox input {
    display: none;
}

.cmntbe-selection-count {
    background: #00a0d2;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.cmntbe-action-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cmntbe-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Status Message */
.cmntbe-status-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.cmntbe-status-message.success {
    background: #edfaef;
    color: #2e7d32;
    border: 1px solid #46b450;
    display: block;
}

.cmntbe-status-message.error {
    background: #fdeded;
    color: #c62828;
    border: 1px solid #e57373;
    display: block;
}

/* Comments Grid */
.cmntbe-comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

.cmntbe-comment-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dcdcde;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.cmntbe-comment-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cmntbe-comment-card.status-awaiting {
    border-left: 4px solid #ffb900;
}

.cmntbe-comment-card.status-spam {
    border-left: 4px solid #d63638;
}

.cmntbe-comment-card.status-approved {
    border-left: 4px solid #46b450;
}

.cmntbe-card-header {
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cmntbe-comment-meta {
    flex: 1;
}

.cmntbe-author-info {
    margin-bottom: 7px;
}

.cmntbe-author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 4px;
}

.cmntbe-author-email {
    font-size: 13px;
    color: #64748b;
}

.cmntbe-status-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cmntbe-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.cmntbe-badge.beautified {
    background: #edfaef;
    color: #2e7d32;
}

.cmntbe-badge.not-beautified {
    background: #fdeded;
    color: #c62828;
}

.cmntbe-badge.has-link {
    background: #fff8e1;
    color: #ff8f00;
}

.cmntbe-badge.has-profile {
    background: #e3f2fd;
    color: #1565c0;
}

.cmntbe-comment-content {
    padding: 10px 20px 10px 40px;
    flex: 1;
}

.cmntbe-comment-content p {
    margin: 0 0 12px 0;
    color: #374151;
    line-height: 1.5;
}

.cmntbe-link-domain {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8fafc;
    border-radius: 4px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.cmntbe-card-footer {
    padding: 10px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cmntbe-post-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00a0d2;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s ease;
}

.cmntbe-post-link:hover {
    color: #0085ba;
}

.cmntbe-card-actions {
    display: flex;
    gap: 8px;
}

.cmntbe-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    background: transparent;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cmntbe-action-btn:hover {
    background: #00a0d2;
    border-color: #00a0d2;
    color: white;
}

/* Settings Panel */
.cmntbe-settings-card {
    background: white;
    border-radius: 6px;
    padding: 30px;
    border: 1px solid #dcdcde;
}

.cmntbe-settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1200px) {
    .cmntbe-settings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .cmntbe-settings-fullwidth {
        grid-column: 1 / -1;
    }
}

.cmntbe-settings-card h2 {
    margin: 0 0 30px 0;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
}

.cmntbe-settings-section {
    margin-bottom: 0;
}

.cmntbe-settings-section + .cmntbe-settings-section {
    margin-top: 40px;
}

.cmntbe-settings-section h3 {
    margin: 0 0 12px 0;
    color: #374151;
    font-size: 18px;
    font-weight: 600;
}

.cmntbe-settings-description {
    margin: 0 0 20px 0;
    color: #64748b;
    line-height: 1.6;
}

.cmntbe-settings-toggles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cmntbe-setting-toggle {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
}

.cmntbe-toggle-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.cmntbe-toggle-content strong {
    display: block;
    margin-bottom: 4px;
    color: #1e293b;
    font-weight: 600;
}

.cmntbe-toggle-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.cmntbe-setting-field {
    margin-bottom: 20px;
}

.cmntbe-setting-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.cmntbe-input {
    padding: 8px 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 14px;
    width: 100px;
}

.cmntbe-textarea {
    width: 100%;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.cmntbe-textarea:focus {
    outline: none;
    border-color: #00a0d2;
}

.cmntbe-settings-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.cmntbe-save-status {
    font-weight: 600;
    color: #46b450;
}

/* Help Section */
.cmntbe-help-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #dcdcde;
}

.cmntbe-help-section h2 {
    margin: 0 0 30px 0;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
}

.cmntbe-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cmntbe-help-card {
    background: white;
    border-radius: 6px;
    padding: 30px;
    border: 1px solid #dcdcde;
    text-align: center;
}

.cmntbe-help-card .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #00a0d2;
}

.cmntbe-help-card h3 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.cmntbe-help-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Empty State */
.cmntbe-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.cmntbe-empty-state .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.cmntbe-empty-state h3 {
    margin: 0 0 12px 0;
    color: #374151;
    font-size: 20px;
    font-weight: 600;
}

.cmntbe-empty-state p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Pagination */
.cmntbe-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.cmntbe-pagination-info {
    color: #64748b;
    font-weight: 500;
}

.cmntbe-pagination-controls {
    display: flex;
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cmntbe-wrap {
        padding: 0 15px 15px;
    }
    
    .cmntbe-header {
        padding: 20px 15px;
        margin: 0 -15px 20px;
    }
    
    .cmntbe-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cmntbe-comments-grid {
        grid-template-columns: 1fr;
    }
    
    .cmntbe-action-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cmntbe-action-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cmntbe-action-buttons {
        justify-content: stretch;
    }
    
    .cmntbe-btn {
        flex: 1;
        justify-content: center;
    }
    
    .cmntbe-pagination {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* WordPress Compatibility */
.cmntbe-wrap .button {
    vertical-align: middle;
}

/* Animation for status updates */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cmntbe-comment-card {
    animation: fadeIn 0.3s ease;
}

/* Comment content with conditional scrolling */
.cmntbe-comment-content {
    padding: 10px 20px 10px 40px;
    flex: 1;
    position: relative;
}

.cmntbe-comment-text {
    max-height: 100px;
    overflow-y: auto;
    position: relative;
}

.cmntbe-comment-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 8px;
    height: 20px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.cmntbe-comment-card:hover .cmntbe-comment-text:after {
    opacity: 0;
}

/* Scrollbar styling */
.cmntbe-comment-text::-webkit-scrollbar {
    width: 4px;
}

.cmntbe-comment-text::-webkit-scrollbar-track {
    background: transparent;
}

.cmntbe-comment-text::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.cmntbe-comment-text::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Clean Modern Footer */
.cmntbe-footer {
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.cmntbe-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 20px;
}

.cmntbe-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cmntbe-footer-logo {
    font-size: 20px;
    width: 32px;
    height: 32px;
    background: #00a0d2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cmntbe-footer-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cmntbe-footer-title strong {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
    line-height: 1;
}

.cmntbe-footer-title span {
    font-size: 11px;
    color: #64748b;
    line-height: 1;
}

.cmntbe-footer-links {
    display: flex;
    gap: 8px;
}

.cmntbe-footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cmntbe-footer-links a:hover {
    background: #00a0d2;
    color: white;
    border-color: #00a0d2;
    transform: translateY(-1px);
}

.cmntbe-footer-links .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.cmntbe-footer-bottom {
    background: #f1f5f9;
    padding: 12px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #64748b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cmntbe-footer-main {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .cmntbe-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .cmntbe-footer-brand {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cmntbe-footer-main {
        padding: 15px;
    }
    
    .cmntbe-footer-bottom {
        padding: 12px 15px;
    }
}

/* About Page Styles */
.cmntbe-about-section {
    max-width: 1200px;
    margin: 0 auto;
}

.cmntbe-about-hero {
    background: white;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #dcdcde;
}

.cmntbe-about-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cmntbe-about-logo {
    font-size: 60px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a0d2, #46b450);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cmntbe-about-title h2 {
    margin: 0 0 8px 0;
    font-size: 32px;
    color: #1e293b;
    font-weight: 700;
}

.cmntbe-version {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.cmntbe-about-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cmntbe-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.cmntbe-feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.cmntbe-feature-card .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #00a0d2;
}

.cmntbe-feature-card h3 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
}

.cmntbe-feature-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.cmntbe-developer-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #dcdcde;
}

.cmntbe-developer-section h3 {
    margin: 0 0 30px 0;
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.cmntbe-developer-card {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cmntbe-developer-avatar {
    flex-shrink: 0;
}

.cmntbe-avatar {
    font-size: 80px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cmntbe-developer-info h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
}

.cmntbe-developer-bio {
    margin: 0 0 20px 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

.cmntbe-developer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cmntbe-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cmntbe-social-link:hover {
    background: #00a0d2;
    color: white;
    border-color: #00a0d2;
    transform: translateY(-1px);
}

.cmntbe-support-section {
    margin-bottom: 30px;
}

.cmntbe-support-section h3 {
    margin: 0 0 30px 0;
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.cmntbe-support-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.cmntbe-support-card .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #46b450;
}

.cmntbe-support-card h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.cmntbe-support-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Developer & Bug Report Grid - Side by Side */
.cmntbe-developer-bug-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

/* Developer Section - LEFT SIDE */
.cmntbe-developer-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #dcdcde;
    height: fit-content;
}

.cmntbe-developer-section h3 {
    margin: 0 0 20px 0;
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
}

.cmntbe-developer-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cmntbe-developer-avatar {
    text-align: center;
}

.cmntbe-avatar {
    font-size: 60px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cmntbe-developer-info h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.cmntbe-developer-bio {
    margin: 0 0 15px 0;
    color: #64748b;
    line-height: 1.5;
    font-size: 14px;
    text-align: center;
}

.cmntbe-developer-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.cmntbe-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
}

.cmntbe-social-link:hover {
    background: #00a0d2;
    color: white;
    border-color: #00a0d2;
    transform: translateY(-1px);
}

/* Bug Report Section - RIGHT SIDE */
.cmntbe-bug-report-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #dcdcde;
    height: fit-content;
}

.cmntbe-bug-report-section h3 {
    margin: 0 0 20px 0;
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
}

.cmntbe-bug-report-info .dashicons-flag {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    color: #ffb900;
    display: block;
}

.cmntbe-bug-report-info h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.cmntbe-bug-report-info > p {
    margin: 0 0 20px 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.cmntbe-bug-report-note {
    margin: 20px 0 12px 0 !important;
    color: #475569 !important;
    font-weight: 600;
    font-size: 13px !important;
}

.cmntbe-bug-report-checklist {
    text-align: left;
    margin: 0;
    padding-left: 18px;
    color: #64748b;
    font-size: 13px;
}

.cmntbe-bug-report-checklist li {
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Make the bug report button appropriate for the layout */
#cmntbe-report-bug-btn {
    font-size: 14px;
    padding: 10px 16px;
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

#cmntbe-report-bug-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Responsive design for side-by-side layout */
@media (max-width: 1024px) {
    .cmntbe-developer-bug-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cmntbe-bug-report-section,
    .cmntbe-developer-section {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .cmntbe-developer-bug-grid {
        gap: 15px;
    }
    
    .cmntbe-bug-report-section,
    .cmntbe-developer-section {
        padding: 20px;
    }
    
    .cmntbe-bug-report-info .dashicons-flag {
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .cmntbe-avatar {
        font-size: 50px;
        width: 70px;
        height: 70px;
    }
    
    .cmntbe-developer-links {
        justify-content: center;
    }
    
    .cmntbe-social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}