input[type="file"] {
    display: none;
}

.file-upload-container {
}

.custom-file-upload {
    display: inline-block;
    background-color: #343a40;
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-bottom: 0;
}

.custom-file-upload:hover {
    background-color: #258cd1;
}

#previewContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.file-preview {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.file-preview img {
    max-width: 100%;
    max-height: 100px;
    max-width: 100%;
    max-height: 100px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.file-preview .remove-preview {
    display: block;
    margin-top: 5px;
    color: #c0392b;
    text-decoration: underline;
    cursor: pointer;
}

.file-preview .remove-preview:hover {
    color: #a5281e;
}