/* Reviewer Dashboard Specific Styles */
.reviewer-dashboard-container {
    min-height: calc(100vh - 120px);
}

/* Welcome Section */
.reviewer-welcome-section {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 16px;
    padding: 32px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(41, 128, 185, 0.3);
}

.reviewer-welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.reviewer-welcome-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.reviewer-welcome-content {
    position: relative;
    z-index: 1;
}

.reviewer-welcome-icon {
    font-size: 48px;
    opacity: 0.3;
}

.reviewer-welcome-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reviewer-welcome-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

/* Stats Cards */
.reviewer-stats-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reviewer-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.reviewer-stats-card .stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.reviewer-stats-card .stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}

.reviewer-stats-card .stats-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Pending Applications Card */
.pending-application-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.pending-application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pending-application-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 16px;
    font-size: 36px;
}

.pending-application-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2c3e50;
}

.pending-application-card .card-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Review Items */
.review-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.1);
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-item-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.review-item-meta {
    font-size: 13px;
    color: #6c757d;
}

.review-item-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-item-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.review-item-badge.in-progress {
    background: #cce5ff;
    color: #004085;
}

.review-item-badge.completed {
    background: #d4edda;
    color: #155724;
}

/* Deadline Badges */
.deadline-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.deadline-badge.urgent {
    background: #f8d7da;
    color: #721c24;
}

.deadline-badge.upcoming {
    background: #fff3cd;
    color: #856404;
}

.deadline-badge.normal {
    background: #d1ecf1;
    color: #0c5460;
}

/* Meeting Cards */
.meeting-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.meeting-card .card-header {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 20px;
}

.meeting-card .meeting-date {
    font-size: 24px;
    font-weight: 700;
}

.meeting-card .meeting-time {
    font-size: 14px;
    opacity: 0.9;
}

.meeting-card .card-body {
    padding: 20px;
}

/* Workload Stats */
.workload-stat {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.workload-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.workload-stat .workload-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.workload-stat .workload-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.workload-stat .workload-label {
    font-size: 14px;
    color: #6c757d;
    margin-top: 4px;
}

/* Progress Ring */
.progress-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.progress-ring circle {
    transition: stroke-dashoffset 0.5s ease;
}

/* Action Buttons */
.review-action-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-bottom: 8px;
}

.review-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-action-btn.approve {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
}

.review-action-btn.reject {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
}

.review-action-btn.changes {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
}

/* Comment Section */
.comment-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.comment-item {
    background: white;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid #2980b9;
}

.comment-item .comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-item .comment-author {
    font-weight: 600;
    color: #2c3e50;
}

.comment-item .comment-date {
    font-size: 12px;
    color: #6c757d;
}

.comment-item .comment-section-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #2980b9;
    margin-bottom: 4px;
}

/* Quick Links */
.reviewer-quick-link {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reviewer-quick-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviewer-quick-link .quick-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    color: white;
}

.reviewer-quick-link .quick-link-text {
    flex: 1;
}

.reviewer-quick-link .quick-link-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.reviewer-quick-link .quick-link-desc {
    font-size: 13px;
    color: #6c757d;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reviewer-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .reviewer-welcome-section {
        padding: 24px;
    }
    
    .reviewer-welcome-title {
        font-size: 24px;
    }
    
    .reviewer-stats-card .stats-number {
        font-size: 2rem;
    }
}
