@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Roboto+Slab:wght@300&family=Sacramento&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.preloader {
  display: block; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.row {
  margin: 20px;
}

body {
  margin: 0;
  padding: 0;
}

header {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(//assets/image/card-3.png);
}

.header {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Adjust the height as needed */
  background: linear-gradient(to top, #111111, rgba(17, 17, 17, 0));
} 

.carousel-image {
  width: 600px;
  height: 300px;
}

.card img {
  max-height: 200px;
  object-fit: cover;
}

.btn-view, .btn-edit {
  background: #444444;
  border: none;
  color: white;
}

.btn-view:hover, .btn-edit:hover {
  background: #666666;
}

.popover {
  background-color: #343a40;
  color: white; 
  border: 1px solid #343a40;
}

.popover .popover-header {
  background-color: #343a40;
  color: white; 
  border-bottom: 1px solid #343a40; 
}

.popover .popover-body {
  background-color: #343a40; 
  color: white;
}

.tooltip-inner {
  background-color: #343a40; /* Dark background */
  color: white; /* White text */
}

.tooltip-arrow::before {
  border-top-color: #343a40;
  border-bottom-color: #343a40;
}
