/*
.file-upload-wrapper {
    border: 2px dashed #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    color: #aaa;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
}
.file-upload-wrapper br{
    display: none !important;
}
.file-upload-wrapper:hover {
    border-color: #888;
}

.file-upload-wrapper.file-uploaded {
    border-color: var(--primary-color);
    overflow: hidden !important;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-name {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.hidden {
    display: none;
}

.remove-file {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    display: none;
}

.remove-file:hover {
    background: #d63030;
}
*/
