/* 
   ============================================
   USER PAGE-SPECIFIC STYLES
   ============================================
*/

/* Job Detail Styles */
.bg-primary-soft {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Past Paper Detail Styles */
.past-paper-img-error {
    display: none;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(232, 20, 255, 0.03) 0%, rgba(20, 119, 255, 0.03) 100%);
    border: 2px dashed var(--border-subtle);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.past-paper-img-error:hover {
    border-color: var(--accent-primary);
    background: rgba(232, 20, 255, 0.05);
}

/* Common Detail Elements */
.bismillah-text {
    font-family: 'Noto Sans Arabic', sans-serif;
    color: var(--text-main);
    opacity: 0.8;
}

.floating-circle-1,
.floating-circle-2 {
    filter: blur(40px);
    opacity: 0.3;
    pointer-events: none;
}
