* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", Arial, sans-serif;
    background: #f4f7fb;
    color: #172033;
}

.mic-page {
    min-height: 100vh;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mic-card {
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 44px rgba(20, 40, 80, 0.12);
}

.mic-card.done {
    max-width: 480px;
    text-align: center;
    margin-top: 80px;
}

.mic-header {
    text-align: center;
    margin-bottom: 24px;
}

.mic-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e8f1ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
}

.mic-header h1 {
    margin: 12px 0 6px;
    font-size: 28px;
    font-weight: 900;
}

.mic-header p {
    margin: 0;
    color: #64748b;
    font-weight: 700;
}

.mic-section {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fbfdff;
}

.mic-section h2 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 900;
}

.mic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mic-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 900;
    font-size: 14px;
}

input,
select {
    width: 100%;
    height: 44px;
    border: 1px solid #d8e0ec;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
}

input:focus,
select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.member-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
}

.member-message.success {
    background: #e8f5e9;
    color: #166534;
}

.member-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.topic-line {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #eef2ff;
    color: #1e3a8a;
    font-weight: 900;
}

.mic-submit {
    margin-top: 20px;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 16px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.mic-submit.link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mic-alert {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.mic-alert.error {
    background: #fee2e2;
    color: #991b1b;
}

.mic-alert.success {
    background: #dcfce7;
    color: #166534;
}

.table-scroll{
    width:100%;
    overflow-x:auto;
}

.mic-table{
    min-width:1400px;
}

@media (max-width: 720px) {
    .mic-page {
        padding: 14px;
    }

    .mic-card {
        padding: 20px;
        border-radius: 20px;
    }

    .mic-grid,
    .mic-grid.four {
        grid-template-columns: 1fr;
    }
}