.main {
    grid-template-columns: 400px 1fr;
}

.form-group .input-wrap .suffix {
    min-width: 76px;
}

input[type="date"].form-control {
    -webkit-appearance: none;
    appearance: none;
    color: #374151;
}

.progress-track {
    height: 6px;
    border-radius: 3px;
    background: #fce7f3;
    overflow: hidden;
    margin: 0 14px 14px;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    transition: width 320ms ease;
}

.stage-desc {
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.7;
    color: #4b5563;
    background: #fff;
}

.stage-desc + .stage-desc {
    border-top: 1px solid #f0f1f3;
}

.stage-desc-stage {
    color: #6b7280;
}

.schedule td.nowrap {
    white-space: nowrap;
}

.schedule tbody tr.row-now {
    background: #fdf2f8;
}

.schedule tbody tr.row-now td {
    color: #be185d;
    font-weight: 600;
}

.schedule tbody tr.row-done td {
    color: #9ca3af;
}

.ms-status {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
}

.ms-status.up {
    background: #eef2ff;
    color: #6366f1;
}

.ms-status.now {
    background: #fce7f3;
    color: #be185d;
    font-weight: 600;
}

.ms-status.done {
    background: #dcfce7;
    color: #16a34a;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.fetus-art {
    width: 100%;
    height: auto;
    display: block;
}

.fetus-pic {
    display: flex;
    justify-content: center;
    padding: 14px 0 6px;
    background: #fff;
    border-bottom: 1px solid #f0f1f3;
}

.fetus-pic .fetus-art {
    width: 150px;
    max-width: 70%;
    animation: fetusFloat 5s ease-in-out infinite;
}

@keyframes fetusFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.fetus-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
}

.fetus-card {
    background: #fff;
    border: 1px solid #f3e2ea;
    border-radius: 10px;
    padding: 8px 10px 12px;
    text-align: center;
}

.fetus-card .fetus-art {
    border-radius: 10px;
}

.fetus-card .f-name {
    font-size: 13px;
    font-weight: 600;
    color: #be185d;
    margin-top: 6px;
}

.fetus-card .f-meta {
    font-size: 12px;
    color: #9a9faa;
    margin-top: 2px;
}

.fetus-card .f-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 6px;
    text-align: left;
}

@media (max-width: 900px) {
    .main {
        grid-template-columns: 1fr;
    }
    .fetus-gallery {
        grid-template-columns: 1fr;
    }
}