/* ===== root scope ===== */
.report {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
}

/* reset 영향 방지 */
.report * {
    font-size: inherit;
}



.report * {
    font-size: inherit;
}

/* ===== title ===== */
.report__title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.report__desc {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

/* ===== section ===== */
.report__section {
    margin-bottom: 40px;
}

.report__section-title {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ===== layout ===== */
.report__row {
    margin-bottom: 20px;
}

.report__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.report__flex {
    display: flex;
    gap: 10px;
}

/* ===== label ===== */
.report__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* ===== input ===== */
.report__input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.report__textarea {
    height: 150px;
    resize: none;
}

/* ===== radio ===== */
.report__radio label {
    position: relative;
    padding-left: 26px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 14px;
}

.report__radio input {
    position: absolute;
    opacity: 0;
}

.report__radio label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
}

.report__radio input:checked + span::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
}

/* ===== file ===== */
.report__file-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.report__file-input {
    display: none;
}

.report__file-name {
    font-size: 13px;
    color: #6b7280;
}

/* ===== button ===== */
.report__btn {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.report__btn--primary {
    background: #111827;
    color: #fff;
}

.report__btn--primary:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.report__btn--outline {
    background: #fff;
    border: 1px solid #ccc;
}

.report__btn--outline:hover {
    background: #f3f4f6;
}

.report__btn--gray {
    background: #9ca3af;
    color: #fff;
}

.report__btn--file {
    background: #9ca3af;
    color: #fff;
}

/* ===== actions ===== */
.report__actions {
    text-align: center;
    margin-top: 40px;
}

.report__btn + .report__btn {
    margin-left: 10px;
}

/* ===== hint ===== */
.report__hint {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}