/* src/index.css or App.css */
html, body, #root {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

#root {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.main-content {
  flex: 1;
}

.card-title, .card-text {
  color: #000; /* Standard font color */
}

.card-hover:hover {
  transform: scale(1.05); /* Slightly enlarge the card on hover */
  transition: transform 0.2s; /* Smooth transition effect */
  cursor: pointer; /* Change cursor to pointer */
}

.card-hover:hover .card-title, .card-hover:hover .card-text {
  color: #000; /* Ensure text color remains standard on hover */
}

.footer {
  background-color: #5cb85c;
  color: #000;
  text-align: center;
  padding: 16px;
  margin-top: auto;
}


/* LoadingScreen.css */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;   /* Use 100% height to fill the full viewport */
  flex-direction: column;
  /* background-color: rgba(0, 0, 0, 0.1); Semi-transparent background color */
  padding-top: 100px;  /* Add 50px padding to the top */

}

.loading-header {
  position: absolute;
  top: 120px;  /* Adjust the position from the bottom */
  width: 100%;  /* Ensure it spans the entire width */
  text-align: center; /* Center the text horizontally */
  font-size: 24px;  /* Adjust the font size */
  font-weight: bold;  /* Make the text bold */
  color: #5cb85c !important; /* White text with slight transparency */
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  Optional shadow for better visibility */
}

.loading-image {
  max-width: 100px;  /* Adjust the size of the loading image as needed */
  max-height:100px;
  z-index: 1;
}


.table-enter {
  opacity: 0;
  transform: translateY(100px);
}

.table-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1000ms, transform 1000ms;
}

.nav-link .user-pic {
  height: 26px;
  border-radius: 50px;
  float: left;
  margin-right: 5px;
}

.dropdown-item-highlighted {
  background-color: #f8f9fa; /* Adjust the highlight color as needed */
}

.navbar-brand {
  font-family: titillium web, sans-serif;
  font-size: 1.5rem !important;
  padding-top: 0 !important;
  margin-right: 2rem !important;
  color: #5cb85c !important;
}

.banner {
  color: #fff;
  background: #333;
  padding: 2rem;
  margin-bottom: 2rem;
}
.banner h1 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.home-page .banner {
  background: #5cb85c;
  box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.3),
    inset 0 -8px 8px -8px rgba(0, 0, 0, 0.3);
}
.home-page .banner p {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300 !important;
  margin-bottom: 0;
}

.home-page .banner h1 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 700 !important;
  text-align: center;
  font-size: 3.5rem;
  padding-bottom: 0.5rem;
}

.belt-image {
  width: 100%; /* Make the image take full width of its container */
  height: auto; /* Maintain aspect ratio */
  max-width: 80px; /* Set a maximum width for the images */
}

.search-container {
  padding: 1rem;
}

.search-input {
  width: 300px;
  max-width: 100%;
}

.text-center th {
  text-align: center;
}

.table-width {
  width: 100%; /* Make the table take full width of its container */
}