/**
 * Cannabis Judging Platform - Judge Dashboard Styles
 * 
 * Styles for judge-specific interfaces
 * 
 * @package CannabisJudgingPlatform
 * @version 3.6.0
 * @author HEADYMONSTER
 */

/* ========================================
   Billy's Awards Judging Form - Clean Design
   ======================================== */

/* Reset and Base Styles */
.cjp-judging-form-wrapper * {
    box-sizing: border-box;
}

/* Main container styles */
.cjp-judging-form-wrapper {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    font-family: "Alegreya SC", Sans-serif;
}

.cjp-judging-form-title {
    color: #d4af37;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin: 0 0 40px;
    font-family: "Alegreya SC", Sans-serif;
}

/* Form field styles */
.cjp-form-field {
    margin-bottom: 30px;
}

.cjp-field-label {
    display: block;
    color: #E8E8E8;
    margin-bottom: 10px;
}

.cjp-field-label .required {
    color: #c02b0a;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.cjp-field-desc {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
    font-style: italic;
}

/* Entry display (non-editable) */
.cjp-entry-display {
    width: 100%;
    padding: 12px;
    background-color: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 16px;
    height: 46px;
    line-height: 24px;
}

/* Radio button styles */
.cjp-radio-group {
    margin-top: 10px;
}

.cjp-radio-option {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.cjp-radio-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    outline: none;
    margin-right: 10px;
    background-color: #1e1e1e;
    position: relative;
    cursor: pointer;
}

.cjp-radio-option input[type="radio"]:checked {
    border-color: #c2b067;
    background-color: #c2b067;
}

.cjp-radio-option input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d4af37;
}

.cjp-radio-option label {
    color: #B0B0B0;
    cursor: pointer;
}

/* Number input styles */
.cjp-number-input {
    padding: 12px;
    background-color: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 18px;
    width: 120px;
}

.cjp-number-input::-webkit-inner-spin-button,
.cjp-number-input::-webkit-outer-spin-button {
    opacity: 1;
    height: 30px;
    width: 30px;
}

/* Textarea styles */
.cjp-textarea {
    width: 100%;
    min-height: 150px;
    padding: 12px;
    background-color: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
}

/* Submit button styles */
.cjp-form-footer {
    text-align: center;
    margin-top: 40px;
}

.cjp-submit-button {
    background-color: #0a0a0a;
    color: #d4af37;
    font-family: "Alegreya SC", Sans-serif;
    font-size: 18px;
    border: 2px solid #d4af37;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: normal;
    min-width: 220px;
}

.cjp-submit-button:hover {
    background-color: #d4af37;
    color: #000;
}

/* Error notices */
.gv-notice {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.gv-error {
    background: #4a0f0f;
    border-left: 4px solid #c00;
    color: #fff;
}

/* Success message */
.judge-update-success {
    background: rgba(27, 139, 27, 0.1);
    border-left: 4px solid #1b8b1b;
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
}

.judge-update-success h3 {
    color: #d4af37;
    margin-top: 0;
    font-family: "Alegreya SC", Sans-serif;
}

.success-icon {
    background: #1b8b1b;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cjp-judging-form-wrapper {
        padding: 15px;
    }
    
    .cjp-judging-form-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .cjp-submit-button {
        width: 100%;
    }
}

/* Focus states for better accessibility */
.cjp-number-input:focus,
.cjp-textarea:focus,
.cjp-radio-option input[type="radio"]:focus,
.cjp-submit-button:focus {
    outline: 2px solid #d4af37;
    outline-offset: 1px;
}

/* Hover states for better UX */
.cjp-radio-option:hover label {
    color: #d4af37;
}

/* ========================================
   Judge Dashboard Specific
   ======================================== */
.cjp-judge-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cjp-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.cjp-dashboard-title {
    font-size: 32px;
    color: var(--cjp-primary-color);
    margin: 0;
    font-family: "Alegreya SC", Sans-serif;
}

.cjp-status-toggle {
    display: flex;
    gap: 10px;
}

.cjp-entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.cjp-entry-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cjp-entry-card:hover {
    border-color: var(--cjp-primary-color);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.cjp-entry-id {
    font-size: 24px;
    color: var(--cjp-primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.cjp-entry-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 15px;
}

.cjp-entry-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .cjp-entry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .cjp-entry-grid {
        grid-template-columns: 1fr;
    }
    
    .cjp-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Enhanced Judge Dashboard UI/UX
   ======================================== */

/* Status Badge System - Style the shortcode output */
body.cjp-ui-enhanced .judge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 12px 0;
}

/* Status badge class for shortcode output */
.cjp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cjp-status-badge.pending {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.4);
}

.cjp-status-badge.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.cjp-status-badge.pill {
    border-radius: 20px;
}

.cjp-status-badge.rounded {
    border-radius: 8px;
}

.cjp-status-badge.square {
    border-radius: 4px;
}

.cjp-status-badge-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
}

/* Enhanced Entry Card Design - Target Elementor Loop Grid items */
body.cjp-ui-enhanced .elementor-loop-item,
body.cjp-ui-enhanced .elementor-post__card,
body.cjp-ui-enhanced .eael-post-grid-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 13px;
    overflow: hidden;
}

body.cjp-ui-enhanced .elementor-loop-item:hover,
body.cjp-ui-enhanced .elementor-post__card:hover,
body.cjp-ui-enhanced .eael-post-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

/* Status-based card styling - will be applied via JavaScript or data attributes */
body.cjp-ui-enhanced .elementor-loop-item[data-status="pending"],
body.cjp-ui-enhanced .elementor-post__card[data-status="pending"],
body.cjp-ui-enhanced .eael-post-grid-item[data-status="pending"] {
    border-color: rgba(255, 152, 0, 0.5) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%) !important;
}

body.cjp-ui-enhanced .elementor-loop-item[data-status="completed"],
body.cjp-ui-enhanced .elementor-post__card[data-status="completed"],
body.cjp-ui-enhanced .eael-post-grid-item[data-status="completed"] {
    border-color: rgba(76, 175, 80, 0.5) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%) !important;
}

/* Enhanced Entry Number Display - Target Elementor Heading Widget */
body.cjp-ui-enhanced .elementor-heading-title,
body.cjp-ui-enhanced .elementor-widget-heading .elementor-heading-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #d4af37 !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

body.cjp-ui-enhanced .elementor-heading-title::before {
    content: "#";
    opacity: 0.6;
    margin-right: 4px;
}

/* Entry Category Badge - Appears directly under entry title */
body.cjp-ui-enhanced .entry-category-badge {
    display: inline-block;
    padding: 6px 16px;
    margin: 0 auto 16px;
    background: #d4af37;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

body.cjp-ui-enhanced .entry-category-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Ensure category badge appears right after heading title */
body.cjp-ui-enhanced .elementor-heading-title + .entry-category-badge,
body.cjp-ui-enhanced .elementor-widget-heading + .entry-category-badge {
    display: block;
    margin-top: 8px;
}

/* ========================================
   Entry Category Badge - General Styles
   v3.19.0 - Category appears directly under entry title
   ======================================== */

.entry-category-badge {
    display: inline-block;
    padding: 6px 16px;
    margin: 8px auto 16px;
    background: #d4af37;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.entry-category-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Ensure category badge appears directly after entry title in Elementor */
.elementor-heading-title + .entry-category-badge,
.elementor-widget-heading + .entry-category-badge,
.elementor-post__title + .entry-category-badge {
    display: block;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Enhanced Category Icon - Already exists via shortcode */
body.cjp-ui-enhanced .entry-category-icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 16px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

body.cjp-ui-enhanced .entry-category-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: #d4af37 !important;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

body.cjp-ui-enhanced .entry-category-icon:hover svg {
    transform: scale(1.1);
}

/* Enhanced Score Display - Already exists via [judge_score_for_entry] shortcode */
body.cjp-ui-enhanced .cjp-judge-score {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #d4af37;
    padding: 16px;
    margin: 16px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

body.cjp-ui-enhanced .cjp-judge-score strong {
    font-size: 32px;
    color: #d4af37;
    display: block;
    margin-top: 6px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* Score color variations */
body.cjp-ui-enhanced .cjp-judge-score.high-score {
    border-left-color: #4caf50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
}

body.cjp-ui-enhanced .cjp-judge-score.high-score strong {
    color: #4caf50;
}

body.cjp-ui-enhanced .cjp-judge-score.medium-score {
    border-left-color: #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
}

body.cjp-ui-enhanced .cjp-judge-score.medium-score strong {
    color: #ff9800;
}

body.cjp-ui-enhanced .cjp-judge-score.low-score {
    border-left-color: #f44336;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.05) 100%);
}

body.cjp-ui-enhanced .cjp-judge-score.low-score strong {
    color: #f44336;
}

/* Enhanced Action Buttons */
body.cjp-ui-enhanced .eael-creative-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.cjp-ui-enhanced .eael-creative-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

/* Score Now Button - Primary - Target by text content */
body.cjp-ui-enhanced .eael-creative-button {
    position: relative;
}

body.cjp-ui-enhanced .eael-creative-button .eael-creative-button-text:contains("Score Now"),
body.cjp-ui-enhanced .eael-creative-button[data-text*="Score Now"] {
    background: linear-gradient(135deg, #d4af37 0%, #c2b067 100%) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    border: 2px solid #d4af37 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

/* Use data attribute or class targeting instead */
body.cjp-ui-enhanced .eael-creative-button.cjp-button-primary,
body.cjp-ui-enhanced .eael-creative-button[data-button-type="score-now"] {
    background: linear-gradient(135deg, #d4af37 0%, #c2b067 100%) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    border: 2px solid #d4af37 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

body.cjp-ui-enhanced .eael-creative-button.cjp-button-primary:hover,
body.cjp-ui-enhanced .eael-creative-button[data-button-type="score-now"]:hover {
    background: linear-gradient(135deg, #c2b067 0%, #d4af37 100%) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
    transform: translateY(-3px) !important;
}

/* Edit Score & View Notes - Secondary */
body.cjp-ui-enhanced .eael-creative-button.cjp-button-secondary,
body.cjp-ui-enhanced .eael-creative-button[data-button-type="edit-score"],
body.cjp-ui-enhanced .eael-creative-button[data-button-type="view-notes"] {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
}

body.cjp-ui-enhanced .eael-creative-button.cjp-button-secondary:hover,
body.cjp-ui-enhanced .eael-creative-button[data-button-type="edit-score"]:hover,
body.cjp-ui-enhanced .eael-creative-button[data-button-type="view-notes"]:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #d4af37 !important;
}

/* Button Sizes */
body.cjp-ui-enhanced.cjp-buttons-small .eael-creative-button {
    padding: 10px 16px !important;
    font-size: 13px !important;
}

body.cjp-ui-enhanced.cjp-buttons-large .eael-creative-button {
    padding: 18px 32px !important;
    font-size: 18px !important;
}

/* Enhanced Progress Bar */
body.cjp-ui-enhanced .cjp-progress-wrapper {
    margin: 24px 0;
}

body.cjp-ui-enhanced .cjp-progress-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

body.cjp-ui-enhanced .cjp-progress-bar {
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.cjp-ui-enhanced .cjp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #c2b067 50%, #d4af37 100%);
    background-size: 200% 100%;
    animation: progress-shimmer 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 16px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
}

@keyframes progress-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Dashboard Header Enhancements */
body.cjp-ui-enhanced .cjp-dashboard-header {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.cjp-ui-enhanced .cjp-status-toggle .elementor-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.cjp-ui-enhanced .cjp-status-toggle .elementor-button:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Search and Filter (when enabled) */
body.cjp-ui-enhanced .cjp-dashboard-search {
    margin-bottom: 20px;
}

body.cjp-ui-enhanced .cjp-dashboard-search input {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

body.cjp-ui-enhanced .cjp-dashboard-search input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

body.cjp-ui-enhanced .cjp-filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

body.cjp-ui-enhanced .cjp-filter-button {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.cjp-ui-enhanced .cjp-filter-button:hover,
body.cjp-ui-enhanced .cjp-filter-button.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

/* Empty State */
body.cjp-ui-enhanced .cjp-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

body.cjp-ui-enhanced .cjp-empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

body.cjp-ui-enhanced .cjp-empty-state h3 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 12px;
}

body.cjp-ui-enhanced .cjp-empty-state p {
    font-size: 16px;
    line-height: 1.6;
}

/* Loading States */
body.cjp-ui-enhanced .cjp-skeleton-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 13px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

body.cjp-ui-enhanced .cjp-loading {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

/* Card Layout Variations */
body.cjp-ui-enhanced.cjp-cards-compact .elementor-post__card,
body.cjp-ui-enhanced.cjp-cards-compact .elementor-loop-item {
    padding: 16px;
}

body.cjp-ui-enhanced.cjp-cards-comfortable .elementor-post__card,
body.cjp-ui-enhanced.cjp-cards-comfortable .elementor-loop-item {
    padding: 28px;
}

/* Hide empty featured images better */
body.cjp-ui-enhanced .elementor-post__thumbnail img[src=""],
body.cjp-ui-enhanced .elementor-post__thumbnail img:not([src]),
body.cjp-ui-enhanced .elementor-widget-image img[src=""] {
    display: none;
}

body.cjp-ui-enhanced .elementor-post__thumbnail:empty::after,
body.cjp-ui-enhanced .elementor-widget-image:has(img[src=""]):after {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    body.cjp-ui-enhanced .cjp-dashboard-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    body.cjp-ui-enhanced .cjp-filter-buttons {
        justify-content: center;
    }
    
    body.cjp-ui-enhanced .eael-creative-button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    body.cjp-ui-enhanced .elementor-post__title {
        font-size: 36px !important;
    }
    
    body.cjp-ui-enhanced .entry-category-icon {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Accessibility Enhancements */
body.cjp-ui-enhanced .eael-creative-button:focus,
body.cjp-ui-enhanced .cjp-filter-button:focus,
body.cjp-ui-enhanced .cjp-status-toggle .elementor-button:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
}

body.cjp-ui-enhanced .cjp-status-badge[aria-label] {
    position: relative;
}

/* Screen reader only text */
body.cjp-ui-enhanced .cjp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

