body {
  background-color: #f8f9fa; /* Light gray */
}

.unstyled-link{
  text-decoration: none;  /* Remove underline */
  color: inherit;         /* Inherit color from parent */
}

.hand-cursor{
  cursor: pointer;
}

/* Page Container */
.page-container {
  padding: 20px;
}

/* Navbar */
.navbar-custom {
  background-color: black; /* Modern blue */
  padding: 12px 20px; /* Increased padding */
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: white !important;
}

.navbar-custom .nav-link:hover {
  color: #cce4f7 !important; /* Light hover color */
}

.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Subheader */
.subheader {
  background-color: #f5f8fa; /* Light blue-gray */
  padding: 20px;
  border-radius: 8px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
}

.page-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
}

.breadcrumb a {
  color: #4a90e2;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

.navbar-main img{
  height: 40px !important;
  border: 1px solid white;
  object-fit: cover;
  background-color: white;
} 

/* Basic loading spinner styling */
.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db; /* Blue color for the spinner */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 9999; /* Make sure it stays on top */
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.add-card{
  min-height: 150px;
}

.page-content{
  margin-top: 50px;
}