﻿/* card wrapper (same vibe as grade12) */
.page-card {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

    .page-card .card-body {
        padding: 1.25rem;
    }

/* stepper look */
.bs-stepper.stepper-icons .bs-stepper-header {
    gap: .75rem;
    padding: .25rem .25rem .5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.bs-stepper.stepper-icons .step .step-trigger {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: .9rem;
    padding: .45rem .7rem;
    transition: .15s;
}

.bs-stepper.stepper-icons .step .bs-stepper-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,#eef4ff,#dfe9ff);
    color: #0d6efd;
    font-weight: 800;
    box-shadow: inset 0 0 0 2px rgba(13,110,253,.25);
}

.bs-stepper.stepper-icons .step.active .step-trigger,
.bs-stepper.stepper-icons .step .step-trigger:focus {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13,110,253,.15);
}

.bs-stepper.stepper-icons .step.active .bs-stepper-circle {
    background: #0d6efd;
    color: #fff;
    box-shadow: none;
}

.bs-stepper.stepper-icons .step.crossed .bs-stepper-circle {
    background: #e9f6ee;
    color: #198754;
    box-shadow: inset 0 0 0 2px rgba(25,135,84,.25);
}

.bs-stepper.stepper-icons .step .bs-stepper-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.bs-stepper.stepper-icons .step .bs-stepper-title {
    font-weight: 700;
    font-size: .95rem;
}

.bs-stepper.stepper-icons .line {
    align-self: stretch;
    width: 44px;
    position: relative;
    opacity: .9;
}

    .bs-stepper.stepper-icons .line::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        transform: translateY(-50%);
        background: #e9ecef;
        border-radius: 999px;
    }

/* buttons */
.button-action {
    display: flex;
    gap: .75rem;
}

.btn-nxt, .btn-prev {
    min-width: 120px;
}

/* loaders / states */
.center-items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-lg {
    width: 2.5rem;
    height: 2.5rem;
}

/* table tweaks */
#educationHistory td, #educationHistory th {
    vertical-align: middle;
}

.center-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.notice-card {
    max-width: 520px;
    border-radius: 1rem;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 12px 28px rgba(0,0,0,.06)
}

.member-illustration {
    width: 120px;
    height: 120px
}

.float {
    animation: float 3s ease-in-out infinite;
    transform-origin: center
}

@@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.form-check-input:checked {
    background-color: #0088d0 !important;
    border-color: #0088d0 !important;
}
