/* 다운로드 모달 */
.download-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.download-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.download-form-close {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.input-row {
    display: grid;
    grid-template-columns: 68px 1fr;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.input-row label {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
}

.input-row input {
    width: 100%;
    box-sizing: border-box;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #f2f2f2;
    padding: 0 14px;
    font-size: 13px;
    color: #222;
    outline: none;
    font-family: inherit;
}

.input-row input::placeholder {
    color: #aaa;
}

.input-row textarea {
    width: 100%;
    box-sizing: border-box;
    height: 130px;
    border: none;
    border-radius: 8px;
    background: #f2f2f2;
    padding: 10px 14px;
    font-size: 13px;
    color: #222;
    outline: none;
    font-family: inherit;
    resize: none;
    line-height: 1.5;
}

.input-row textarea::placeholder {
    color: #aaa;
}

.input-row.textarea-row {
    align-items: flex-start;
    padding-top: 8px;
}

.input-row.textarea-row label {
    padding-top: 10px;
}

.finish-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

.finish-row .empty {
    display: none;
}

.download-btn {
    width: 100%;
    height: 50px;
    background: #8085c4;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
}

.download-btn:hover {
    background: #6a6fb3;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    background: #555;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
}

.download-modal-inner {
    background: #fff;
    border-radius: 14px;
    width: 90%;
    max-width: 420px;
    padding: 36px 28px 24px;
    position: relative;
    box-sizing: border-box;
}


/* 다운로드센터 */
#bo_list .bo_list ul li span.s-user { width: 15%; min-height: 20px; }
#bo_list .bo_list ul li span.s-name { width: 45%; }
#bo_list .bo_list_head ul li span.s-user { width: 15%; }
#bo_list .bo_list_head ul li span.s-name { width: 45%; }