/* main_extra.css */

/* ── 햄버거 버튼 ── */
.btn-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.btn-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #0F172B;
    border-radius: 2px;
}

/* 헤더: 햄버거+로고 좌측, 서비스소개 우측 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── 푸터 회사 정보 ── */
.footer-info {
    width: 100%;
    padding: 32px 20px 40px;
    background-color: #F5F7FA;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-company {
    font-size: 15px;
    font-weight: 700;
    color: #1C3A6B;
    margin-bottom: 4px;
}

.footer-detail {
    font-size: 13px;
    color: #45556C;
    line-height: 1.6;
    word-break: keep-all;
}

.footer-copy {
    font-size: 12px;
    color: #45556C;
    margin-top: 4px;
}
.ongoing-card {
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 16px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.ongoing-card:active {
    background-color: #F8FAFF;
}

.ongoing-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ongoing-thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.ongoing-name {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #0F172B;
}

.ongoing-capacity {
    font-size: 13px;
    color: #999;
}

/* 진행 단계 바 */
.ongoing-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ongoing-progress__bar {
    width: 100%;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
}

.ongoing-progress__fill {
    height: 100%;
    background-color: #0A41ED;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ongoing-progress__labels {
    display: flex;
    justify-content: space-between;
}

.ongoing-progress__labels span {
    font-size: 12px;
    color: #C0C5CC;
    font-weight: 500;
}

.ongoing-progress__labels span.active {
    color: #0A41ED;
    font-weight: 700;
}