@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v23-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v23-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v23-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v23-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v23-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.btn .lucide {
  vertical-align: sub;
  width: 16px;
  height: 16px;
}

.lucide-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.lucide-icon.green {
  stroke: green;
}
.lucide-icon.red {
  stroke: red;
}
.lucide-icon.orange {
  stroke: orange;
}
.lucide-icon.grey {
  stroke: lightgrey;
}
.lucide-icon.blue {
  stroke: lightblue;
}

/* Ensure the footer always sticks to the bottom of the page */
html {
  height: 100%;
}

b,
strong {
  font-weight: 600;
}
.select2-search__field {
  /* padding: 2px !important; */
  font-size: 13px !important;
}
.wrapper {
  /* overflow: hidden; */
}
section {
  overflow: auto;
}
.main {
  /* float: right; */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
}
main {
  overflow: auto;
  z-index: 1;
  min-height: calc(100vh - 80px);
}
td {
  white-space: nowrap;
}
tr {
  vertical-align: middle;
}
table {
  font-size: 12px;
}

.card .card-body {
  overflow: auto;
}
label {
  font-size: 14px;
}

th {
  font-weight: 600;
}
.sidebar .nav-link {
  /* font-size: 15px; */
  /* margin-top: 10px; */
  /* margin: 10px 15px; */
  /* margin-left: 10px; */
}

.sidebar {
  font-size: 14px;
}
/* .sidebar .nav {
  display: block;
} */

/* .sidebar .nav {
  display: block;
} */
.form-control {
  font-size: 14px;
}
header {
  border: 1px solid lightgray;
  /* -webkit-box-shadow: 0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15); */
  /* box-shadow: 0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15); */
  min-height: 80px;
  z-index: 2;
}

.wrapper {
  height: 100vh;
  display: flex;
}
/* .container {
  border: 1px solid red;
} */
body {
  /* min-height: 100%; */
  font-family: "Poppins", sans-serif;
  /* display: flex; */
  /* flex-direction: column; */
}
.content {
  height: calc(100vh - 112px);
}
.footer {
  margin-top: auto;
  z-index: 1;
}
.iframe-container {
  /* flex-grow: 1; */

  background-color: aqua;

  height: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.iframe-container iframe {
  width: 100%;
  height: 100%;
  background-color: bisque;
  /* border: 1px solid red; */
  -webkit-box-shadow: none;
  box-shadow: none;
}
label {
  margin-left: 4px;
  font-size: 13px;
  color: var(--bs-secondary);
}
.form-group label {
  margin-bottom: 4px;
}

.filter-form {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}

.select2-container .select2-selection--multiple {
  min-height: 31px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  max-width: 80%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 29px;
  font-size: 12px;
  padding-left: 10px;
}

.select2-container--default .select2-selection--single {
  height: 31px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 13px;
}

.select2-dropdown {
  font-size: 12px;
}

.select2-search__field {
  font-size: 13px !important;
}

.select2-selection__choice {
  font-size: 12px !important;
}

/* File management animations and styles */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn-outline-danger:hover {
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

.alert-custom {
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Table row fade out animation */
tr.fade-out {
  transition: opacity 0.3s ease;
  opacity: 0;
}
