/* Dropzone растянутый */
.upload-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    margin: 20px 0;
    border: 2px dashed #c0c0c0;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    padding-left: 25px;
    padding-right: 25px;

}

.upload-text {
    max-width: 500px;
    overflow: hidden;
    /* скрываем переполнение текста */
    /* white-space: nowrap; */
    /* не переносим текст */
    text-overflow: ellipsis;
}

.upload-text p {}

.upload-area:hover {
    border-color: #4a90e2;
    background-color: #eef4fb;
}

.upload-area.drag-over {
    border-color: #357abd;
    background-color: #e6f0fa;
}

.upload-area p {
    margin: 0;

}

.upload-area small {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
}



#submitBtn:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
}

/* Статусы */
.status-success {
    color: #28a745;
}

.status-error {
    color: #dc3545;
}

/* Результаты */
.result-block {
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
}

.alert-light ul {
	margin-top: 0px;
	margin-right: 25px;
	font-size: 12px;
    line-height: 16px;
}

.alert-light a {
	cursor: pointer;
	position: absolute;
	right: 15px;
	z-index: 10000;
	padding: 5px 10px;
	background-color: #fff;
	border-radius: 9px;"
}