/* 사용자 화면용 첨부파일 다운로드 섹션 */
.attachment_section_user {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa !important;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.attachment_section_user h4 {
    margin-bottom: 0.8rem;
    color: #495057;
    font-size: 1.4rem;
    font-weight: 600;
}

.attachment_item_user {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background-color: white !important;
    border: 1px solid #dee2e6;
    border-radius: 0.4rem;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.2s ease;
}

.attachment_item_user:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.attachment_info_user {
    display: flex;
    align-items: center;
    flex: 1;
}

.attachment_icon_user {
    margin-right: 0.8rem;
    font-size: 1.8rem;
    color: #007bff;
}

.attachment_name_user {
    font-weight: 500;
    color: #495057;
    word-break: break-all;
    font-size: 1.3rem;
}

.download_btn_user {
    display: inline-flex !important;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background-color: #007bff !important;
    color: white !important;
    text-decoration: none;
    border-radius: 0.3rem;
    font-size: 1.2rem;
    transition: background-color 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.download_btn_user:hover {
    background-color: #0056b3 !important;
    color: white !important;
    text-decoration: none;
}

.download_btn_user i {
    margin-right: 0.4rem;
}
