.btn-file-upload {
    position: relative;
    color: #ffff !important;
}

.btn-file-upload input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
}

.btn-custom-tools {
    position: relative;
    color: #fff;
    border: 0;
    margin: 0;
    border-radius: 3px;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 15px;
    background-color: transparent;
    transition: 0.3s background-color 0s;
}

.btn-table-delete {
    display: none;
}

.btn-custom-tools:hover,
.btn-custom-tools:focus {
    color: #fff;
}

.card-data {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Animated Gradient Background */
.body-gradient {
    background: radial-gradient(100% 100% at var(--7-x-position) var(--7-y-position), #f5f9f9 -3%, transparent),radial-gradient(100% 100% at var(--8-x-position) var(--8-y-position), #53bec6 -100%, transparent),#1b253b;animation-name: main; animation-iteration-count: infinite; animation-duration: 10s; transition-timing-function: ease-in;}@property --7-x-position {
      syntax: '<percentage>';
        inherits: false;
        initial-value: 20%;
      }@property --7-y-position {
        syntax: '<percentage>';
          inherits: false;
          initial-value: 80%;
        }@property --8-x-position {
      syntax: '<percentage>';
        inherits: false;
        initial-value: 80%;
      }@property --8-y-position {
        syntax: '<percentage>';
          inherits: false;
          initial-value: 20%;
        }:root {--7-x-position: 20%;--7-y-position: 80%;--8-x-position: 80%;--8-y-position: 20%;}
    @keyframes main {
      25% {--7-x-position: 15%;--7-y-position: 15%;--8-x-position: 85%;--8-y-position: 80%;}50% {--7-x-position: 80%;--7-y-position: 15%;--8-x-position: 15%;--8-y-position: 85%;}
    }
    

.side-gradient {
	background: linear-gradient(-45deg, #fcfcfc, #f5f5f5, #a1d1e2);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Spinner styles */
.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left-color: #9c27b0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    display: block;
    /* Hidden by default */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*spinner*/
.spinner-bounce {
    margin: 0 auto;
    width: 70px;
    text-align: center;
}

.spinner-bounce > div {
    width: 18px;
    height: 18px;
    background-color: #9c27b0;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner-bounce .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner-bounce .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.table-fixed{
  /* width: 100%; */
  background-color: #f3f3f3;
  height:500px;
  overflow-y:auto;
  /* display:block; */
}

.table-fixed thead th {
  position: sticky;
  top: 0;
  background-color: #f8f9fa; /* Example background color, adjust as needed */
  z-index: 1; /* Ensure header stays above scrolling content */
}

.icon-ok {
    color: #4CAF50; /* A Material Design green */
}

.icon-warning {
    color: #e9d418; /* A Material Design red */
}

