/* Vertical Centering Helper */
.construction-centered {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers the card vertically within the 100vh wrapper */
  align-items: center;     /* Centers the card horizontally */
  text-align: center;
}

/* Container Box Layout */
.construction-container {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  max-width: 650px; /* Kept slightly tighter for a focused alert layout */
  width: 100%;
  box-sizing: border-box;
}

/* Modern Graphic Icon Element */
.construction-icon {
  font-size: 50px;
  margin-bottom: 15px;
  line-height: 1;
}

.text-blue {
  color: #0B3C5D !important;
  margin-top: 25px;
}

/* Premium Corporate Button Layout */
.action-block {
  margin-top: 35px;
}

.btn-primary {
  display: inline-block;
  background-color: #0B3C5D; /* Your signature deep blue */
  color: #ffffff !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(11, 60, 93, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Interactive Button Hover States */
.btn-primary:hover {
  background-color: #114B72; /* Slightly lighter blue shift when hovered */
  transform: translateY(-2px); /* Subtle up-lift */
  box-shadow: 0 6px 15px rgba(11, 60, 93, 0.25);
}

.btn-primary:active {
  transform: translateY(0); /* Drops back down slightly on physical click */
}