/* Стили для уведомлений */
.qa-notice {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.qa-notice.success {
    background: #dff0d8;
    color: #3c763d;
}

.qa-notice.error {
    background: #f2dede;
    color: #a94442;
}

/* Стили для поля загрузки файлов */
.qa-form input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.qa-form .file-upload-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.qa-form .file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.qa-form .file-upload-label:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.qa-form .file-upload-label:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.qa-form .file-upload-icon {
    margin-right: 10px;
    font-size: 18px;
}

.qa-form .file-upload-name {
    margin-top: 10px;
    font-size: 14px;
    color: #dedede;
}

.qa-form .file-upload-wrapper small {
    color: #fff;
}

/* Стили для выбранных файлов */
.qa-form .file-list {
    margin-top: 10px;
}

.qa-form .file-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.qa-form .file-item span {
    font-size: 12px;
    color: #dedede;
}

.qa-form .file-item-remove {
    margin-left: 15px;
    color: #c94848;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 22px;
    display: flex;
    padding: 0;
    height: auto;
    line-height: 1em;
    margin-top: 0;
}