  #job-drop-area {
        border: 2px dashed #ccc;
        padding: 20px;
        text-align: center;
        margin-bottom: 15px;
        font-size: 13px;
      }
      #drop-area {
        border: 2px dashed #ccc;
        padding: 20px;
        text-align: center;
        margin-bottom: 15px;
        font-size: 13px;
      }
      .file-item {
        margin: 5px 0;
      }
	  .banner-container {
        width: 100%;
        overflow: hidden;
        background-color: #ffbf00;
        padding: 5px 0;
        display: none;
      }
.loader {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-radius: 50%;
  background-color: #3498db;
  animation: pulse 0.6s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

      .banner-text {
        display: inline-block;
        white-space: nowrap;
        color: #fff;
        font-weight: bold;
        font-size: 1.2em;
        animation: scroll-left 10s linear infinite;
      }

      @keyframes scroll-left {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
	   #previewDiv {
        width: 600px;
        padding: 20px;
      }
      .remove-btn {
        margin-left: 10px;
        color: red;
        cursor: pointer;
      }
	#deleteModel .modal-content, 
#anDeleteModel .modal-content {
  width: 45%;
  height: 25%;
  overflow-y: hidden;
}

	
	.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
    padding: 2px;
    border: 1px solid #ddd;
}
.row:last-child .cell {
    border: none;
    padding: 0;
    background: transparent;
}
.cell:first-child {
   
    background-color: #f4f4f4; /* Light background for labels */
}

button {
    background-color: #007bff; /* Example button styling */
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

button.close {
    background-color: #dc3545; /* Red for close */
}
    .modal {
    display: none; 
    position: fixed;
    z-index:100;
    left: 0; 
    top: 0;
    width:100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
   

}

.modal-content {
    background-color: white;
    margin: 1% auto;
    padding: 20px;
    width: 75%;
	max-height: 95%;
	overflow-y: auto;
    border-radius: 8px;
	font-size:14px !important;
}

.close {
    float: right;
    cursor: pointer;
}
label.error {
	  color: red;
	  font-size: 12px;
	  font-weight: bold;
	}
	.hide{
		display: none;
	}
	.red{
		color: red;
	}
	.green{
		color: green;
	}