/* SAS Applicant Portal — base styles
 * Extracted from apps/sas_portal/templates/sas_portal/base.html
 * Shared by base.html (authenticated portal shell) and consumed via
 *   {% load static %}
 *   <link rel="stylesheet" href="{% static 'sas_portal/css/portal.css' %}">
 *
 * NOTE: base_public.html has its own inline <style> containing Django
 * {% static %} url() references and is therefore intentionally NOT included
 * here — those declarations cannot live in a static file.
 */

.sas-header {
    background: linear-gradient(135deg, #696cff 0%, #5f61e6 100%);
}
.admission-hero {
    background: linear-gradient(135deg, #696cff 0%, #5f61e6 50%, #7367f0 100%);
    color: white;
    padding: 4rem 0;
}
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(105, 108, 255, 0.2);
}
.status-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
}
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #696cff;
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    width: 2px;
    height: calc(100% + 10px);
    background: #e7e7e8;
}
.timeline-item:last-child::after {
    display: none;
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
}
.step::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e7e7e8;
}
.step:last-child::before {
    display: none;
}
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e7e7e8;
    color: #697a8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.step.active .step-number,
.step.completed .step-number {
    background: #696cff;
    color: white;
}
.step.completed .step-number::after {
    content: '\2713';
}
