/* 
 * Scholarship Application Styles
 * Custom styling for scholarship application process
 */

/* Scholarship Cards */
.scholarship-list .card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.scholarship-list .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.scholarship-detail {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Application Wizard Steps */
.scholarship-steps {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.scholarship-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.scholarship-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.scholarship-step-circle {
    width: 50px;
    height: 50px;
    background-color: #e9ecef;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.scholarship-step.active .scholarship-step-circle {
    background-color: var(--bs-primary);
    color: #fff;
}

.scholarship-step.completed .scholarship-step-circle {
    background-color: #198754;
    color: #fff;
}

.scholarship-step-title {
    font-size: 0.85rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.scholarship-step.active .scholarship-step-title,
.scholarship-step.completed .scholarship-step-title {
    color: #212529;
    font-weight: 500;
}

/* OTP Input */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 2rem 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

/* File Upload */
.border-dashed {
    border-style: dashed !important;
}

/* Review Sections */
.review-section {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-section:last-child {
    margin-bottom: 0;
}

/* Timeline Styles */
.application-timeline {
    position: relative;
    padding-left: 30px;
}

.application-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    height: 100%;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
}

/* Scholarship Detail Panel */
.scholar-top {
    margin-bottom: 30px;
}

.scholar-rounded-brd {
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.continue-widget-panel {
    margin-top: 20px;
}

/* Dashboard Card */
.dashboard-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 24px;
}

.dashboard-card .card-header {
    background-color: transparent;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}

.dashboard-card .card-title {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    color: #6c757d;
    margin-bottom: 0;
}

/* Scholarship Form Styles */
.scholar-widget {
    padding: 2rem;
}

.d-flexer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Success Stories Section */
.success-stories-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .scholarship-steps::before {
        display: none;
    }
    
    .scholarship-step {
        margin-bottom: 1rem;
    }
    
    .scholarship-steps {
        flex-direction: column;
    }
    
    .otp-input {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}