/* General Styles */
:root {
    --primary-orange: #F5A63D;
    --secondary-orange: #E87D3E;
    --light-bg: #FAFAFA;
    --text-dark: #333333;
    --text-muted: #6C757D;
    --success-green: #8BC34A;
    --yellow-bg: #FFEB3B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: visible;
}

/* ======================================
   LOGIN PAGE ENHANCED STYLES
   ====================================== */

/* Left Section - Modern Orange Background with Wave */
.left-section {
    background: linear-gradient(135deg, #FFB84D 0%, #F5A63D 50%, #E87D3E 100%);
    position: relative;
    overflow: hidden;
}

.wave-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: ellipse(70% 60% at 85% 40%);
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        clip-path: ellipse(70% 60% at 85% 40%);
    }
    50% {
        clip-path: ellipse(75% 65% at 80% 45%);
    }
}

/* Decorative Shapes */
.decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: morphing 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    animation: morphing 12s ease-in-out infinite 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.5;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 10s ease-in-out infinite 3s;
    opacity: 0.4;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(90deg) scale(1.1);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

.content-wrapper {
    max-width: 550px;
    padding: 3rem 2rem;
    z-index: 2;
}

.logo-container {
    animation: fadeIn 1s ease-in;
    text-align: left;
}

.logo {
    width: 220px;
    height: auto;
    
    padding: 12px;
  
}



/* Hero Content */
.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    color: white;
    text-transform: uppercase;
}

.title-highlight {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #C85A28;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 480px;
}

/* Stats Container */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: white;
    min-width: 60px;
    text-align: center;
}

.stat-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.stat-text p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Fade-in Animations */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Container Overflow Settings */
.container-fluid {
    overflow: visible !important;
}

.row {
    overflow: visible !important;
}

.col-lg-6 {
    overflow: visible !important;
}

/* Right Section - Enhanced Form Area */
.right-section {
    background: var(--light-bg);
    padding: 2rem;
    overflow: visible;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
    overflow: visible;
    width: 100%;
}

.login-header {
    margin-bottom: 2rem;
}

.login-title {
    color: var(--secondary-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.login-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Form Styles */
.login-form {
    animation: fadeIn 1.2s ease-in;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-orange);
}

.form-control-modern {
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.form-control-modern:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(245, 166, 61, 0.15);
    background: white;
}

.form-control-modern::placeholder {
    color: #BDBDBD;
}

/* Input Group Styling */
.input-group {
    position: relative;
    width: 100%;
    display: flex;
}

.toggle-password,
.input-addon {
    border: 2px solid #E0E0E0;
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 0.9rem 1.2rem;
    background: white;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: default;
}

.toggle-password:hover {
    background: var(--light-bg);
    color: var(--primary-orange);
}

.input-addon {
    cursor: default;
    pointer-events: none;
}

.input-addon:hover {
    background: white;
    color: var(--text-muted);
}

.input-group .form-control-modern {
    border-right: none;
    border-radius: 12px 0 0 12px;
    flex: 1;
    min-width: 0;
}

.input-group:focus-within .toggle-password,
.input-group:focus-within .input-addon {
    border-color: var(--primary-orange);
}

/* Enhanced Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.45);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

/* Back Link */
.back-link {
    color: var(--secondary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--primary-orange);
    transform: translateX(-5px);
}

.back-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.back-link:hover .back-icon {
    transform: translateX(-3px);
}

/* Register Link */
.register-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.register-link {
    color: var(--secondary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.register-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.register-link:hover::after {
    width: 100%;
}

.register-link:hover {
    color: var(--primary-orange);
}

/* Login Footer */
.login-footer {
    border-top: 1px solid #E0E0E0;
    padding-top: 1.5rem;
}

.footer-help-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.help-link {
    color: var(--secondary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: var(--primary-orange);
}

/* Enhanced Alert Styles */
.alert {
    border-radius: 12px;
    font-size: 0.9rem;
    border: none;
    animation: slideDown 0.4s ease-out;
}

.alert-danger {
    background: #FFEBEE;
    color: #C62828;
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.15);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   ORIGINAL FORM STYLES (for other blades)
   ====================================== */

/* === (kept) your variables, resets, base, and all existing blocks === */
/* ... your file content above remains unchanged ... */

/* Ensure required asterisk is visible across pages */
.required-field::after {
    content: " *";
    color: var(--secondary-orange);
    font-weight: 700;
}



/* Upload area — match brand hover & active */
.upload-area {
    border: 2px dashed #ddd;
    border-radius: 12px; /* round to match inputs */
    padding: 2rem;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}
.upload-area:hover,
.upload-area.upload-area--active {
    border-color: var(--primary-orange);
    background: #FFF9F0;
    box-shadow: 0 4px 16px rgba(245, 166, 61, 0.15);
}

/* Success alert to pair with your danger alert styling */
.alert-success {
    background: #E9F7EF;
    color: #1B5E20;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.12);
}

/* Fine-tune spacing to mirror login page rhythm */
.form-container .form-label { margin-bottom: 0.6rem; }
.form-container .mb-4 { margin-bottom: 1.25rem !important; }

/* Make hero/logo consistency tighter on very small screens */
@media (max-width: 576px) {
    .logo { width: 140px; }
}

/* --- everything else in your original CSS remains as-is below --- */


/* Links */
a {
    color: var(--secondary-orange);
}

a:hover {
    color: var(--primary-orange);
}

/* ======================================
   DASHBOARD STYLES
   ====================================== */

/* Header Styles */
.header-divider {
    height: 4px;
    background: linear-gradient(to right, var(--primary-orange), var(--yellow-bg));
    margin-top: 1rem;
 
}

.header-section {
    
       margin-left: 5%;
    margin-right: 5%;
}

.logodash {
    width: 150px;
    height: auto;
}

.page-titledash {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    cursor: pointer;
}

.btn-logout:hover {
    color: var(--primary-orange);
}



.main-content {
    min-height: calc(100vh - 250px);
}

.info-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     margin-left: 5%;
    margin-right: 5%;
}

.section-header {
    background: var(--primary-orange);
    padding: 0.75rem 1.5rem;
}

.section-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.section-content {
    padding: 2rem 1.5rem;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: block;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.status-container {
    background: white;
}

.status-icon {
    display: inline-block;
}

.status-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.status-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.status-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.submission-info {
    background: #FFF3E0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    max-width: 1200px;
    margin: 0 auto;
}

.submission-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.submission-date {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.help-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-orange);
     margin-left: 5%;
    margin-right: 5%;
}

.section-header-help {
    background: transparent;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #DEDEDE;
}

.section-header-help h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.help-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-card:hover {
    background: #E8E8E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.help-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.help-contact {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dashboard-footer {
    background: var(--primary-orange);
    margin-top: 3rem;
}

.footer-text {
    font-size: 0.85rem;
    color: white;
}

.footer-link {
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    color: white;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media (max-width: 991px) {
    .left-section {
        min-height: 60vh;
    }
    
    .title-line, .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .form-container {
        padding: 1.5rem;
        max-width: 100%;
        overflow: visible;
    }
    
    .input-group {
        width: 100%;
        overflow: visible;
    }
    
    .form-control-modern {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .logo-container {
        text-align: center;
    }
    
    .title-line, .title-highlight {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .login-title, .form-title {
        font-size: 1.8rem;
    }
    
    .col-md-6 {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .header-logo {
        width: 50px;
        height: 50px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 0.65rem;
    }
    
    .page-title {
        font-size: 1rem;
    }
    
    .status-description br {
        display: none;
    }
    
    .help-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .title-line, .title-highlight {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 100px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-text h3 {
        font-size: 1.1rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .logout-btn {
        font-size: 0.8rem;
    }
    
    .status-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .status-title {
        font-size: 1.2rem;
    }
    
    .status-description {
        font-size: 0.85rem;
    }
    
    .submission-info {
        padding: 0.75rem 1rem;
    }
}

/* Utility Classes */
.z-index-2 {
    z-index: 2;
}

.min-vh-100 {
    min-height: 100vh;
}


/* ======================================
   STATUS-SPECIFIC STYLES
   ====================================== */

/* Under Review Status */
.status-under-review .status-icon svg {
    stroke: #64B5F6;
}

.status-under-review .status-title {
    color: #1976D2;
}

.status-under-review .submission-info {
    background: #E3F2FD;
    border-left-color: #64B5F6;
}

.status-under-review .submission-label,
.status-under-review .submission-date {
    color: #1565C0;
}

.status-under-review .status-notification {
    background: #BBDEFB;
    color: #0D47A1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Shortlisted Status */
.status-shortlisted .status-icon {
    background: linear-gradient(135deg, #E1BEE7 0%, #CE93D8 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.status-shortlisted .status-icon svg {
    stroke: #8E24AA;
    fill: none;
    stroke-width: 2.5;
    width: 50px;
    height: 50px;
    animation: checkmarkDraw 0.6s ease-out;
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

.status-shortlisted .status-title {
    color: #7B1FA2;
    font-size: 1.75rem;
}

.status-shortlisted .next-steps-box {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    border: 2px solid #AB47BC;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(171, 71, 188, 0.15);
}

.status-shortlisted .next-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #CE93D8;
}

.status-shortlisted .next-step-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4A148C;
    letter-spacing: 0.5px;
}

.status-shortlisted .next-step-value {
    font-size: 1rem;
    font-weight: 700;
    color: #7B1FA2;
    background: rgba(139, 69, 19, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #AB47BC;
}

.status-shortlisted .interview-date-label {
    font-size: 0.85rem;
    color: #6A1B9A;
    margin-bottom: 0.5rem;
}

.status-shortlisted .interview-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A148C;
}

.status-shortlisted .email-reminder {
    background: #C8E6C9;
    color: #2E7D32;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #81C784;
}

/* Interview Scheduled Styles */
.status-shortlisted .interview-scheduled {
    margin-bottom: 1rem;
}

.status-shortlisted .interview-main-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.75rem;
}

.status-shortlisted .interview-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6A1B9A;
    margin-bottom: 0.25rem;
}

.status-shortlisted .interview-datetime {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4A148C;
    text-align: center;
    padding: 0.5rem;
    background: #E8F5E8;
    border-radius: 6px;
    border: 2px solid #AB47BC;
}

.status-shortlisted .interview-notes-display {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #F8F9FA;
    border-radius: 6px;
    border-left: 3px solid #AB47BC;
}

.status-shortlisted .notes-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6A1B9A;
    display: block;
    margin-bottom: 0.25rem;
}

.status-shortlisted .notes-text {
    font-size: 0.9rem;
    color: #4A148C;
    font-style: italic;
}

/* Shortlisted Info - Enhanced Format */
.status-shortlisted .shortlisted-info {
    background: rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(171, 71, 188, 0.2);
}

.status-shortlisted .shortlisted-date-display {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6A1B9A;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-shortlisted .shortlisted-date-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4A148C;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    min-width: 140px;
}

/* Accepted Status */
.status-accepted .status-icon {
    background: linear-gradient(135deg, #C8E6C9 0%, #81C784 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-accepted .status-icon svg {
    stroke: #2E7D32;
    fill: none;
    stroke-width: 3;
    width: 50px;
    height: 50px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.status-accepted .status-title {
    color: #388E3C;
    font-size: 1.75rem;
    font-weight: 700;
}

.status-accepted .accepted-info-box {
    background: #E8F5E9;
    border-left: 4px solid #66BB6A;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.status-accepted .accepted-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.status-accepted .accepted-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B5E20;
}

/* Confetti Animation for Accepted Status */
.status-accepted .confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFD700;
    animation: confettiFall 3s ease-out infinite;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) rotate(720deg);
        opacity: 0;
    }
}

/* Common Status Styles */
.status-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Icon Pulse Animation (for pending/under review) */
@keyframes iconPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.status-icon svg {
    animation: iconPulse 2s ease-in-out infinite;
}

.status-shortlisted .status-icon svg,
.status-accepted .status-icon svg {
    animation: none;
}

/* Not Approved Status */
.status-not-approved .status-icon {
    background: linear-gradient(135deg, #FFCDD2 0%, #EF9A9A 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.status-not-approved .status-icon svg {
    stroke: #C62828;
    fill: none;
    stroke-width: 3;
    width: 50px;
    height: 50px;
}

.status-not-approved .status-title {
    color: #D32F2F;
    font-size: 1.75rem;
    font-weight: 700;
}

.status-not-approved .rejection-info-box {
    background: #FFEBEE;
    border-left: 4px solid #EF5350;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.status-not-approved .rejection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.status-not-approved .rejection-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #C62828;
}

.status-not-approved .rejection-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D32F2F;
}

.status-not-approved .reason-label {
    font-size: 0.85rem;
    color: #C62828;
    margin-bottom: 0.5rem;
}

.status-not-approved .reason-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #B71C1C;
}

/* Reapplication Available Box */
.reapplication-box {
    background: #FFF8E1;
    border: 2px solid #FFB74D;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reapplication-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FFE0B2;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.reapplication-icon svg {
    stroke: #F57C00;
    width: 28px;
    height: 28px;
}

.reapplication-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 0.75rem;
}

.reapplication-description {
    font-size: 0.9rem;
    color: #E65100;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reapplication-details {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.reapplication-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reapplication-detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 0.85rem;
    color: #6D4C41;
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #E65100;
}

.days-remaining {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F57C00;
    margin-bottom: 0.25rem;
}

.days-label {
    font-size: 0.8rem;
    color: #8D6E63;
}

.btn-reapply {
    background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

.btn-reapply:hover {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.btn-reapply:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

/* Reapplication Not Available */
.reapplication-not-available {
    background: #FFF3E0;
    border: 2px solid #FFB74D;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.countdown-box {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F57C00;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #8D6E63;
    font-weight: 600;
}

/* Responsive adjustments for status sections */
@media (max-width: 768px) {
    .status-shortlisted .status-title,
    .status-accepted .status-title,
    .status-not-approved .status-title {
        font-size: 1.4rem;
    }
    
    .status-shortlisted .status-icon,
    .status-accepted .status-icon,
    .status-not-approved .status-icon {
        width: 80px;
        height: 80px;
    }
    
    .status-shortlisted .status-icon svg,
    .status-accepted .status-icon svg,
    .status-not-approved .status-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .next-steps-box,
    .accepted-info-box,
    .email-reminder,
    .status-notification,
    .rejection-info-box,
    .reapplication-box {
        padding: 1rem;
    }

    .reapplication-title {
        font-size: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .btn-reapply {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}