        /* Additional CSS for Peer Review Page */
        .review-timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .review-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #ec4899);
            border-radius: 3px;
        }
        
        .timeline-item {
            display: flex;
            gap: 25px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .timeline-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0c4a6e 0, #0369a1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 10px 20px -5px rgba(2, 84, 121, 0.4);
            position: relative;
            z-index: 2;
            border: 4px solid #fff;
        }
        
        .timeline-content {
            flex: 1;
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
            border-color: #3b82f6;
        }
        
        .timeline-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        
        .timeline-header i {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #f39c12 0, #e67e22 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
        }
        
        .timeline-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f3b5e;
            margin: 0;
        }
     
        
        .timeframe-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #e0f2fe 0, #bae6fd 100%);
            color: #0369a1;
            padding: 6px 15px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid #7dd3fc;
        }
        
        .timeframe-badge i {
            font-size: 0.8rem;
        }
        
        .review-type-card {
            background: linear-gradient(135deg, #f5f0ff 0, #ede9fe 100%);
            border-radius: 24px;
            padding: 15px;
            margin-bottom: 40px;
            border: 2px solid #c4b0f0;
            position: relative;
            overflow: hidden;
        }
        
        .review-type-card::before {
            content: "\f070";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 120px;
            opacity: 0.1;
            color: #8b5cf6;
            transform: rotate(10deg);
        }
        
        .review-type-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .review-type-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #8b5cf6 0, #6d28d9 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
            box-shadow: 0 10px 20px -5px rgba(109, 40, 217, 0.4);
        }
        
        .review-type-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #5b21b6;
            margin: 0;
        }
        
        .review-type-desc {
            font-size: 1.1rem;
            color: #4c1d95;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .review-model-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        
        .review-model-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .review-model-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
            border-color: #8b5cf6;
        }
        
        .model-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #fde9d2 0, #fcd6a5 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b45d00;
            font-size: 1.3rem;
        }
        
        .model-text {
            flex: 1;
            color: #1f2f44;
            line-height: 1.6;
        }
        
        .model-text strong {
            color: #5b21b6;
            display: block;
            margin-bottom: 5px;
        }
        
        .criteria-highlight {
            background: linear-gradient(135deg, #f0f7f0 0, #e0f2e0 100%);
            border-radius: 24px;
            padding: 15px;
            margin: 20px 0;
            border: 2px solid #86efac;
        }
        
        .decision-showcase {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            margin: 30px 0;
        }
      
        
        .decision-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
        }
        
        .decision-item.accept {
            border-color: #2e7d32;
        }
        
        .decision-item.minor {
            border-color: #ed6c02;
        }
        
        .decision-item.major {
            border-color: #d32f2f;
        }
        
        .decision-item.reject {
            border-color: #424242;
        }
        
        .decision-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.8rem;
        }
        
        .decision-item.accept .decision-icon {
            background: #c8e6c9;
            color: #2e7d32;
        }
        
        .decision-item.minor .decision-icon {
            background: #ffecb3;
            color: #ed6c02;
        }
        
        .decision-item.major .decision-icon {
            background: #ffcdd2;
            color: #d32f2f;
        }
        
        .decision-item.reject .decision-icon {
            background: #e0e0e0;
            color: #424242;
        }
        
        .decision-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .decision-item.accept .decision-title {
            color: #2e7d32;
        }
        
        .decision-item.minor .decision-title {
            color: #ed6c02;
        }
        
        .decision-item.major .decision-title {
            color: #d32f2f;
        }
        
        .decision-item.reject .decision-title {
            color: #424242;
        }
        
        .decision-desc {
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
        }
        
        .responsibility-showcase {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            margin: 30px 0;
        }
        
        .responsibility-item-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .responsibility-item-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
            border-color: #dc2626;
        }
        
        .responsibility-item-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #dc2626, #ef4444);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .responsibility-item-card:hover::before {
            opacity: 1;
        }
        
        .responsibility-item-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #fde9d2 0, #fcd6a5 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: #b45d00;
            font-size: 1.2rem;
        }
        
        .responsibility-item-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f3b5e;
            margin-bottom: 10px;
        }
        
        .responsibility-item-desc {
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
        }
        
        .appeals-card {
            background: linear-gradient(135deg, #fff5e6 0, #ffe4cc 100%);
            border-radius: 24px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f5cba0;
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .appeals-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f97316 0, #ea580c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.2rem;
            box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
        }
        
        .appeals-content {
            flex: 1;
        }
        
        .appeals-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #9a3412;
            margin-bottom: 10px;
        }
        
        .appeals-text {
            font-size: 1rem;
            color: #7b341e;
            line-height: 1.7;
        }
        
        @media (max-width: 768px) {
            .review-timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                gap: 15px;
            }
            
            .timeline-number {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .review-type-header {
                flex-direction: row;
                text-align: center;
            }
            
            .appeals-card {
                flex-direction: column;
                text-align: center;
            }
        }
		  /* RTL specific */
        html[dir="rtl"] .timeline-content:hover {
            transform: translateX(5px);
        }
        
        html[dir="rtl"] .timeline-header {
            flex-direction: row-reverse;
        }
        
        html[dir="rtl"] .timeframe-badge i {
            margin-left: 5px;
            margin-right: 0;
        }
        /* ======================================================
   Icon + Title Row Layout - Professional Alignment
   Icons on left/right with titles in same row
   ====================================================== */

/* ========== BASE ICON-ROW CONTAINER ========== */
.icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.icon-row.left {
    flex-direction: row;
}

.icon-row.right {
    flex-direction: row-reverse;
}

/* Icon container */
.icon-row .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-secondary, #f39c12), #e67e22);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

/* Title container - takes remaining space */
.icon-row .title-container {
    flex: 1;
    min-width: 0; /* Prevents flex overflow */
}

.icon-row .title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-row .subtitle {
    font-size: 0.9rem;
    color: #475569;
    margin: 2px 0 0;
    line-height: 1.4;
}

/* ========== PAGE TITLE WITH ICON ========== */
.page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.page-title-icon {
    flex-shrink: 0;
    /* width: 60px; */
    /* height: 60px; */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.page-title-content {
    flex: 1;
}

.page-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 5px;
    line-height: 1.2;
}

.page-title-sub {
    font-size: 1.1rem;
    color: #1e6f9f;
    margin: 0;
    line-height: 1.5;
}

/* ========== SECTION HEADER WITH ICON ========== */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.section-header.left {
    flex-direction: row;
}

.section-header.right {
    flex-direction: row-reverse;
}

.section-header .section-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.25);
}

.section-header .section-title-container {
    flex: 1;
}

.section-header .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-header .section-subtitle {
    font-size: 0.95rem;
    color: #475569;
    margin: 4px 0 0;
}

/* ========== CARD HEADERS WITH ICON ========== */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-header.left {
    flex-direction: row;
}

.card-header.right {
    flex-direction: row-reverse;
}

.card-header .card-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #fde9d2, #fcd6a5);
    color: #b45d00;
    box-shadow: 0 6px 12px -4px rgba(180, 93, 0, 0.2);
}

.card-header .card-title-container {
    flex: 1;
}

.card-header .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    line-height: 1.3;
}

.card-header .card-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 2px 0 0;
}

/* ========== REVIEW TYPE CARD ========== */
.review-type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-type-header.left {
    flex-direction: row;
}

.review-type-header.right {
    flex-direction: row-reverse;
}

.review-type-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e6f9f, #155a82);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 15px -5px rgba(30, 111, 159, 0.4);
}

.review-type-header .title-container {
    flex: 1;
}

.review-type-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    line-height: 1.2;
}

/* ========== DECISION ITEMS ========== */
.decision-item {
    display: ruby;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align:inherit;
}

.decision-item.left {
    flex-direction: row;
}

.decision-item.right {
    flex-direction: row-reverse;
}

.decision-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #f39c12;
}

.decision-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.2);
}

.decision-content {
    flex: 1;
}

.decision-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0 0 5px;
}

.decision-desc {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* Accept */
.decision-item.accept .decision-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.decision-item.accept .decision-icon::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Minor Revisions */
.decision-item.minor .decision-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.decision-item.minor .decision-icon::before { content: "\f044"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Major Revisions */
.decision-item.major .decision-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.decision-item.major .decision-icon::before { content: "\f071"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Reject */
.decision-item.reject .decision-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}
.decision-item.reject .decision-icon::before { content: "\f00d"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* ========== MODEL CARDS ========== */
.review-model-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9edf4;
    transition: all 0.3s ease;
}

.review-model-card.left {
    flex-direction: row;
}

.review-model-card.right {
    flex-direction: row-reverse;
}

.review-model-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    border-color: #f1c40f;
}

.model-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fde9d2, #fcd6a5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 1.4rem;
    box-shadow: 0 6px 12px -4px rgba(180, 93, 0, 0.15);
}

.model-text {
    flex: 1;
    font-size: 0.95rem;
    color: #1f2f44;
    line-height: 1.5;
    margin: 0;
}

.model-text strong {
    color: #5b21b6;
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
}

/* ========== TIMELINE ITEMS ========== */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.timeline-item.left {
    flex-direction: row;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.25);
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
}

.timeframe-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f9ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #0369a1;
    font-weight: 600;
    margin-left: auto;
}

.timeframe-badge::before {
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.timeline-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIBILITY ITEMS ========== */
.responsibility-item-card {
    display: ruby;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.responsibility-item-card.left {
    flex-direction: row;
}

.responsibility-item-card.right {
    flex-direction: row-reverse;
}

.responsibility-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    border-color: #ffb347;
}

.responsibility-item-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fde9d2, #fcd6a5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 1.4rem;
    box-shadow: 0 6px 12px -4px rgba(180, 93, 0, 0.15);
}

.responsibility-item-content {
    flex: 1;
}

.responsibility-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.responsibility-item-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ========== APPEALS CARD ========== */
.appeals-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f0f9ff;
    border-radius: 20px;
    border: 1px solid #b8d6f0;
    margin: 30px 0;
}

.appeals-card.left {
    flex-direction: row;
}

.appeals-card.right {
    flex-direction: row-reverse;
}

.appeals-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(241, 196, 15, 0.4);
}

.appeals-content {
    flex: 1;
}

.appeals-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003f6f;
    margin: 0 0 10px;
}

.appeals-text {
    font-size: 1rem;
    color: #1f3a57;
    line-height: 1.6;
    margin: 0;
}

/* ========== COMMITMENT BLOCK ========== */
.commitment-block {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: #e1f0fa;
    border-radius: 34px;
    border: 1px solid #b8d6f0;
    margin: 30px 0;
}

.commitment-block.left {
    flex-direction: row;
}

.commitment-block.right {
    flex-direction: row-reverse;
}

.commitment-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #ffd966;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px -5px rgba(255, 215, 0, 0.4);
}

.commitment-text {
    flex: 1;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1a3f60;
    margin: 0;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-header.left {
    flex-direction: row;
}

.feature-header.right {
    flex-direction: row-reverse;
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    box-shadow: 0 6px 12px -4px rgba(2, 84, 121, 0.3);
}

.feature-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    line-height: 1.3;
}

.feature-content {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
/* ========== APPEALS CARD ICONS ========== */
.appeals-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(241, 196, 15, 0.4);
    flex-shrink: 0;
}

.appeals-icon::before {
    content: "\f0e4"; /* gavel icon - represents judgment/appeal */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== COMMITMENT ICON ========== */
.commitment-icon {
    width: 70px;
    height: 70px;
    background: #ffd966;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px -5px rgba(255, 215, 0, 0.4);
}

.commitment-icon::before {
    content: "\f004"; /* heart icon - represents commitment/dedication */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== RTL SUPPORT ========== */
html[dir="rtl"] .timeline-number {
    margin-left: 0;
    margin-right: 0;
}

html[dir="rtl"] .timeframe-badge::before {
    margin-right: 0;
    margin-left: 6px;
}

html[dir="rtl"] .decision-icon {
    margin-left: 0;
    margin-right: 0;
}

html[dir="rtl"] .appeals-icon {
    margin-left: 15px;
    margin-right: 0;
}

/* ========== RTL SUPPORT ========== */
html[dir="rtl"] .icon-row.right,
html[dir="rtl"] .section-header.right,
html[dir="rtl"] .card-header.right,
html[dir="rtl"] .review-type-header.right,
html[dir="rtl"] .decision-item.right,
html[dir="rtl"] .review-model-card.right,
html[dir="rtl"] .timeline-item.right,
html[dir="rtl"] .responsibility-item-card.right,
html[dir="rtl"] .appeals-card.right,
html[dir="rtl"] .commitment-block.right,
html[dir="rtl"] .feature-header.right {
    flex-direction: row;
}

html[dir="rtl"] .icon-row.left,
html[dir="rtl"] .section-header.left,
html[dir="rtl"] .card-header.left,
html[dir="rtl"] .review-type-header.left,
html[dir="rtl"] .decision-item.left,
html[dir="rtl"] .review-model-card.left,
html[dir="rtl"] .timeline-item.left,
html[dir="rtl"] .responsibility-item-card.left,
html[dir="rtl"] .appeals-card.left,
html[dir="rtl"] .commitment-block.left,
html[dir="rtl"] .feature-header.left {
    flex-direction: row-reverse;
}

html[dir="rtl"] .timeframe-badge {
    margin-left: 0;
    margin-right: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .icon-row .icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .icon-row .title {
        font-size: 1rem;
    }
    
    .page-title-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .page-title-main {
        font-size: 1.6rem;
    }
    
    .section-header .section-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .section-header .section-title {
        font-size: 1.2rem;
    }
    
    .decision-item {
        padding: 12px;
    }
    
    .decision-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .appeals-card {
        flex-direction: row;
        text-align: center;
        padding: 20px;
    }
    
    .commitment-block {
        flex-direction: row;
        text-align: center;
        padding: 25px;
    }
    
    .appeals-card.right,
    .appeals-card.left,
    .commitment-block.right,
    .commitment-block.left {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .page-title-main {
        font-size: 1.3rem;
    }
    
    .page-title-sub {
        font-size: 1rem;
    }
    
    .decision-item {
        flex-direction: column;
        text-align: center;
    }
    
    .decision-item.right,
    .decision-item.left {
        flex-direction: column;
    }
    
    .review-model-card {
        flex-direction: column;
        text-align: center;
    }
    
    .review-model-card.right,
    .review-model-card.left {
        flex-direction: column;
    }
}
/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .decision-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .model-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .appeals-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .review-type-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .responsibility-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* ======================================================
   peer-review-policy-icons.css - Missing Icon Styles
   For Peer Review Policy Page Components
   ====================================================== */

/* ========== PAGE TITLE ICON ========== */
.page-title-icon::before {
    content: "\f0e4"; /* gavel icon - represents peer review/justice */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}

/* ========== REVIEW TYPE CARD ICONS ========== */
.review-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e6f9f, #155a82);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 15px -5px rgba(30, 111, 159, 0.4);
}

.review-type-icon::before {
    content: "\f06e"; /* eye icon - represents review/observation */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== MODEL CARD ICONS ========== */
.model-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fde9d2 0, #fcd6a5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 1.4rem;
    box-shadow: 0 6px 12px -4px rgba(180, 93, 0, 0.2);
}

/* Author Anonymity Icon */
.review-model-card:nth-child(1) .model-icon::before {
    content: "\f2bb"; /* user secret icon - represents anonymity */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Reviewer Anonymity Icon */
.review-model-card:nth-child(2) .model-icon::before {
    content: "\f2be"; /* user incognito icon - represents hidden identity */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Objective Evaluation Icon */
.review-model-card:nth-child(3) .model-icon::before {
    content: "\f05b"; /* balance scale icon - represents fairness/objectivity */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== TIMELINE STEP ICONS ========== */
.timeline-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.3);
    position: relative;
}

/* Step 1 - Initial Check */
.timeline-item:nth-child(1) .timeline-number::before {
    display: none; /* Uses number 1 */
}

/* Step 2 - Editor Assignment - using icon overlay on hover */
.timeline-item:nth-child(2):hover .timeline-number::after {
    content: "\f007"; /* user icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    opacity: 0;
}

/* Step 3 - Invitation to Reviewers */
.timeline-item:nth-child(3) .timeline-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.timeline-item:nth-child(3):hover .timeline-number::after {
    content: "\f0c0"; /* users icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

/* Step 4 - Review Period */
.timeline-item:nth-child(4) .timeline-number {
    background: linear-gradient(135deg, #10b981, #059669);
}

.timeline-item:nth-child(4):hover .timeline-number::after {
    content: "\f017"; /* clock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

/* Step 5 - Decision Recommendation */
.timeline-item:nth-child(5) .timeline-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.timeline-item:nth-child(5):hover .timeline-number::after {
    content: "\f0e4"; /* gavel icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

/* Step 6 - Final Decision */
.timeline-item:nth-child(6) .timeline-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.timeline-item:nth-child(6):hover .timeline-number::after {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

/* Timeframe Badge Icon */
.timeframe-badge::before {
    content: "\f073"; /* calendar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 0.85rem;
    color: #f39c12;
}

/* ========== FEATURE CARD ICONS ========== */
/* Originality and Novelty */
.feature-card:nth-child(1) .feature-icon::before {
    content: "\f0eb"; /* lightbulb icon - represents ideas/innovation */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Scientific Rigor */
.feature-card:nth-child(2) .feature-icon::before {
    content: "\f0c3"; /* flask icon - represents scientific method */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Academic Relevance */
.feature-card:nth-child(3) .feature-icon::before {
    content: "\f0ac"; /* globe icon - represents global relevance */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Clarity and Structure */
.feature-card:nth-child(4) .feature-icon::before {
    content: "\f15c"; /* file lines icon - represents document clarity */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* References */
.feature-card:nth-child(5) .feature-icon::before {
    content: "\f02e"; /* bookmark icon - represents references/citations */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== DECISION ICONS ========== */
.decision-item {
    position: relative;
}

.decision-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.2);
}

/* Accept Decision */
.decision-item.accept .decision-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.decision-item.accept .decision-icon::before {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Minor Revisions */
.decision-item.minor .decision-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.decision-item.minor .decision-icon::before {
    content: "\f044"; /* pencil icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Major Revisions */
.decision-item.major .decision-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.decision-item.major .decision-icon::before {
    content: "\f071"; /* exclamation triangle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Reject */
.decision-item.reject .decision-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: #fff;
}

.decision-item.reject .decision-icon::before {
    content: "\f00d"; /* times icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== RESPONSIBILITY ITEM ICONS ========== */
.responsibility-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fde9d2, #fcd6a5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 1.4rem;
    margin-bottom: 15px;
    box-shadow: 0 6px 12px -4px rgba(180, 93, 0, 0.15);
}

/* Confidentiality */
.responsibility-item-card:nth-child(1) .responsibility-item-icon::before {
    content: "\f023"; /* lock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Objectivity */
.responsibility-item-card:nth-child(2) .responsibility-item-icon::before {
    content: "\f05b"; /* balance scale icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Timeliness */
.responsibility-item-card:nth-child(3) .responsibility-item-icon::before {
    content: "\f017"; /* clock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Conflict of Interest */
.responsibility-item-card:nth-child(4) .responsibility-item-icon::before {
    content: "\f071"; /* exclamation triangle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== AUTHOR RESPONSIBILITY ICONS ========== */
/* Point-by-Point Response */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.feature-card:nth-child(1) .feature-icon::before {
    content: "\f15c"; /* file lines icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Highlight Changes */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}
.feature-card:nth-child(2) .feature-icon::before {
    content: "\f0c9"; /* highlighter/pen icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Meet Deadlines */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}
.feature-card:nth-child(3) .feature-icon::before {
    content: "\f017"; /* clock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== APPEALS CARD ICONS ========== */
.appeals-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(241, 196, 15, 0.4);
    flex-shrink: 0;
}

.appeals-icon::before {
    content: "\f0e4"; /* gavel icon - represents judgment/appeal */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== COMMITMENT ICON ========== */
.commitment-icon {
    width: 70px;
    height: 70px;
    background: #ffd966;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45d00;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px -5px rgba(255, 215, 0, 0.4);
}

.commitment-icon::before {
    content: "\f004"; /* heart icon - represents commitment/dedication */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== RTL SUPPORT ========== */
html[dir="rtl"] .timeline-number {
    margin-left: 0;
    margin-right: 0;
}

html[dir="rtl"] .timeframe-badge::before {
    margin-right: 0;
    margin-left: 6px;
}

html[dir="rtl"] .decision-icon {
    margin-left: 0;
    margin-right: 0;
}

html[dir="rtl"] .appeals-icon {
    margin-left: 15px;
    margin-right: 0;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .decision-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .model-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .appeals-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .review-type-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .responsibility-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}