/* Job Detail Component Styles */

#job-detail-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Standalone Page Styles */
#detail-view .bg-white {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

#job-logo {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dark Mode Support */
body.dark #job-detail-content {
    color: #cbd5e1; /* slate-300 */
}

body.dark #job-detail-content h2, 
body.dark #job-detail-content h3 {
    color: #f8fafc; /* slate-50 */
}

body.dark hr {
    border-color: #334155; /* slate-700 */
}

body.dark .bg-blue-50 {
    background-color: #1e293b;
    border-color: #334155;
    color: #60a5fa;
}

/* High Contrast Support */
body.high-contrast #job-detail-content {
    color: #000000;
}

body.high-contrast .bg-brand-yellow {
    background-color: #ffff00 !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
}
