#dropzone {
    width: 100%;
    height: 100px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.5em;
    text-align: center;
}

#dropzone.hover {
    border-color: #333;
    color: #333;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
}

.file-preview div {
    margin: 10px;
    position: relative;
}

.file-preview img {
    max-width: 100px;
    max-height: 100px;
}

.file-preview .file-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    position: relative;
}

.file-preview .remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #ab3535;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    font-weight: 700;
}
.instructions-card {
    width: 600px;
}
.form-card {
    flex-grow: 1;
    margin-bottom: 20px;
}