/** 사업등록 첨부파일 */
#drop-area {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-height: 171px;
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#drop-msg {
}

#drop-area.dragover {
    border-color: #3b82f6;
    background-color: #e0f2fe;
}

.file-card {
    background-color: #f1f5f9;
    padding: 3px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.file-card:hover {
    background-color: #e2e8f0;
}

.file-info {
    font-size: 14px;
    text-align: left;
}

.file-line {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.file-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.file-size {
    font-size: 13px;
    color: #64748b;
}

.upload-btn {
    padding: 4px 10px;
    border: 1px solid #aaa;
    border-radius: 3px;
    background-color: #F0F0F0;
    color: #222;
    cursor: pointer;
}

.upload-btn:hover {
    background-color: #eee;
}

.remove-btn {
    background: none;
    border: none;
    color: #1e293b;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #dc2626;
    font-weight: bold;
}