.incoming {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: small;
}

.notification {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  width: 80%;
  box-sizing: border-box;
}

.table-container {
  width: 80%;
  padding: 10px;
}

.refresh {
  height: min-content;
  margin-right: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
}

.table th {
  background-color: #f2f2f2;
}

.message {
  font-size: medium;
  padding: inherit;
}

.import {
  height: min-content;
}

.nodata {
  font-size: large;
  font-weight: bold;
}

.loadingmain{
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.loadingdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 1s linear infinite;
  /* Safari */
  animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}


.swaltable table {
  border-collapse: collapse;
}

.swaltable th, td {
  padding: 8px;
  text-align: left;
  border: none;
}

.swaltable input {
  width: 100%;
  padding: 5px;
}