form-styles.css

#transport-status-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fbfbfb;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#transport-status-form label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 15px;
    display: block;
}

#transport-status-form input,
#transport-status-form select,
#transport-status-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

#transport-status-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

#transport-status-form input[type="submit"]:hover {
    background-color: #005a8a;
}

/* Select2 styling */
.select2-container .select2-selection--single {
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
}
.select2-selection__rendered{
    line-height: normal !important;
}

/* Basic container styling for the Dropzone area */
.tsf-dropzone {
    border: 2px dashed #aaa;
    border-radius: 5px;
    background: #fafafa;
    padding: 20px;
    width: 100%;
    min-height: 150px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

/* The default text (e.g., "Drop files here to upload") */
.tsf-dropzone .dz-default.dz-message {
    font-size: 16px;
    color: #666;
}

/* Individual file previews (the thumbnails you see after uploading) */
.tsf-dropzone .dz-preview {
    display: inline-block;     /* Thumbnails side by side */
    margin: 10px;
    vertical-align: top;
    text-align: left;          /* So file details align nicely under the thumbnail */
}

/* Thumbnail images inside the preview */
.tsf-dropzone .dz-preview .dz-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
}

/* Hide or style the progress bar if you want */
.tsf-dropzone .dz-preview .dz-progress {
    display: none;
}

/* File name styling */
.tsf-dropzone .dz-preview .dz-filename {
    font-size: 14px;
    margin-top: 5px;
}

/* File size styling */
.tsf-dropzone .dz-preview .dz-size {
    font-size: 13px;
    color: #888;
}

/* The "Remove file" link */
.tsf-dropzone .dz-remove {
    cursor: pointer;
    color: #c00;
    font-size: 13px;
    display: inline-block;
    margin-top: 5px;
    text-decoration: underline;
}
/* Hide Dropzone success and error icons */
.dz-preview .dz-success-mark,
.dz-preview .dz-error-mark {
    display: none !important;
}
.dropzone {
    background-color: #f0f0f0;
    border: 2px dashed #0073aa;
    padding: 20px;
    text-align: center;
}
.tsf-dropzone .dz-default.dz-message {
    font-size: 16px;
    color: #666;
  }
  