/* Add the meta tag for responsive behavior */


/* Reset CSS */
body {
  margin: 0;
  padding: 0;
}

/* General styles */
.home-link {
  color: white;
  transition: color 0.3s;
}

.home-link:hover {
  color: orange;
}

/* Wrapper styles */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: lightblue;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Header styles */
.dashboard-heading {
  color: white;
  text-align: center;
  background: linear-gradient(to right, #007bff, #6c757d);
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Welcome container styles */
.welcome-container {
  background-color: rgba(255, 255, 255, 0.8);
  width: 80%;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main container styles */
.container {
  width: 80%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Card styles */
.card {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
  padding: 20px;
  height: 200px;
  text-align: center;
}

.card-header {
  background-color: #007bff;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Logo positioning styles */
.logo-left,
.logo-right {
  width: 100px;
  height: auto;
}

/* Nav tabs styles */
.nav-tabs {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  margin: 0 5px;
}

/* Mobile styles */
@media (max-width: 767px) {
  .logo-left,
  .logo-right {
    width: 80px;
  }

  .dashboard-heading {
    font-size: 24px;
    margin-top: 20px; /* Add margin to move the heading to the top */
  }

  .welcome-container {
    width: 100%;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .container {
    width: 100%;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .card {
    height: auto;
  }

  .card-columns {
    column-gap: 10px;
  }

  .nav-tabs {
    flex-wrap: wrap; /* Allow the menu items to wrap on small screens */
  }

  .nav-link {
    flex: 1; /* Each menu item takes equal space in a row */
    margin: 5px;
  }

.dashboard-heading {
  color: white;
  text-align: center;
  background: linear-gradient(to right, #007bff, #6c757d);
  padding: 10px; /* Decrease the padding to reduce height */
  margin-bottom: 20px;
  width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 18px; /* Decrease the font size */
}
}
.nav-tabs {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0; /* Remove padding to have equal-sized tabs */
}

.nav-item {
  margin: 0 5px; /* Add some space between tabs */
}

.nav-link {
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px 20px; /* Increase padding horizontally for rectangular shape */
  background-color: #007bff;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.nav-link.active {
  background-color: #ff8c00;
  border-color: #ff8c00;
}

.nav-link:hover {
  background-color: #ff8c00;
  border-color: #ff8c00;
}
.nav-tabs {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap; /* Allow navigation tabs to wrap to a new row if necessary */
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0; /* Remove padding to have equal-sized tabs */
}

.nav-item {
  margin: 5px; /* Add some space between rows and tabs */
}
