html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.tabs .tab {
  padding: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
}

.tabs .tab.active {
  background-color: #ddd;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-wrapper {
  display: inline-flex;
  align-items: center;
  margin-right: 5px; 
  position: relative;
}

.tab {
  padding: 10px 15px;
  background: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
}

.tab.active {
  background: #ddd;
  border-color: #888;
}

.remove-tab {
  background: rgb(68 97 115/var(--tw-bg-opacity));
  color: white;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  cursor: pointer;
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  padding: 0;
}

.remove-tab:hover {
  background: darkred;
}

@keyframes page-load {
  from {
    background-color: #ffc422;
  }
  to {
    background-color: #c0392b;
  }
}
.page-loading::before {
  content:" ";
  display:block;
  position:fixed;
  z-index:10;
  height:2px;
  width:100%;
  top:0;
  left:0;
  background-color:#06D;
  animation: page-load infinite ease-out 2s;
  box-shadow:0 2px 2px rgba(0,0,0,.2);
}