.pin-toggle-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.pin-toggle-btn i {
  color: #888;
  transition: color 0.2s ease;
}
.pin-toggle-btn:hover i {
  color: #ff0000;
}

.reg {
  color: #222222;
}
.reg a {
  color: #196efa !important;
  text-decoration: none;
  font-weight: bold;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

a {
  text-decoration: none;
  color: #e7e7e7;
}

.project-detail-box {
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project-card {
  box-shadow: 0.125rem 0.125rem 0.35rem rgba(68, 68, 68, 0.7803921569);
}
.project-card .card-body {
  padding: 0.5rem !important;
}
.project-card .card-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.project-card .card-text {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.project-card .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.card {
  background-color: #FFF9B1;
  border-style: solid;
}

.container .text-center {
  border: none;
  max-height: 10rem;
}

.login-page {
  position: relative;
  z-index: 1;
  padding: 2rem 0.5rem;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url("/static/img/login-banner.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 1;
  z-index: -1;
}
.login-page .container {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.custom-progress {
  background-color: #e7e299 !important; /* replace with your desired track color */
}

.custom-progress-bar {
  background-color: #416d4a;
  color: #fff;
  font-weight: bold;
  transition: width 0.6s ease;
}

.bmc-container {
  transform: scale(0.5); /* 0.5 = 50% size */
  transform-origin: top left; /* makes scaling behave nicely */
  display: inline-block; /* makes sure it takes the right space */
  height: 0; /* collapse excess height */
}

.color-option {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.color-option input[type=radio] {
  display: none;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 3px dotted;
  border-color: #666;
  display: inline-block;
  transition: border-color 0.3s, transform 0.2s;
}

.color-option input[type=radio]:checked + .color-swatch {
  border-color: #000;
  transform: scale(1.2);
}

.color-option:hover .color-swatch {
  border-color: #666;
}

.card.completed {
  background-color: #aaaaaa !important;
  transition: background-color 0.3s ease;
}

/* New Professional Background - subtle dots */
/* New Professional Background - subtle dots */
body {
  background-color: #dfebf7;
  background-image: radial-gradient(#98a9be 1px, transparent 1px);
  background-size: 15px 15px;
}

.link-blue {
  color: #0d6efd !important;
  font-weight: 600;
  text-decoration: none;
}

.link-blue:hover {
  text-decoration: underline;
}