html, body {
    height: auto;       /* so they only wrap the content */
    margin: 0;          /* remove default margin */
    padding: 0;         /* remove default padding */
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


body.homepage-background {
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}



.page-title {
  margin-top: 100px;
  margin-bottom: 100px;
  font-size: 50px;
  background-color: #00ccd7;
  color: #f0f0f0; /* off-white text */
  text-decoration: underline;
  text-underline-offset: 10px;
  font-weight: 600;
  display:flex;
  padding-left: 630px;
}

.labels {
  background-color: #00ccd7;
  color: #f0f0f0; /* off-white text */
  font-weight: bold;
}


.main-container {
  width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.button {
  background-color: #00ccd7;
  color: #f0f0f0; /* off-white text */
  font-size: 25px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border: none; /* remove black border */
  text-decoration: none;
}

.button:hover {
  background-color: #009dff; /* slightly darker on hover */
}

.login-button {
  font-size: 28px;
  height: 70px;
  border-radius: 6px;
}

.image {
  display: flex;
  padding-top: 0; /* remove top padding */
  margin-top: -400px; /* move it up by 50px */
  padding-left: 1400px;
}

.bord {
  border: 2px solid black;
  background-color: #00ccd7;
  color: #f0f0f0;
}

.phases{
  background-color: black;
  color: white;
  border: 2px solid white;
}


body.homepage-background {
    background-color: black;
}

.color{
  background-color: black;
  color: white;
}

.output-container {
    display: flex;
    flex-direction: column; /* stacks children vertically */
    overflow-y: auto;
    height: 75vh;
    margin-left: 20px;
    border: 2px solid #ccc; /* optional border */
    box-sizing: border-box;
    margin-top: 27px;
    cursor: pointer;
}

.output-item {
    border: 2px solid white;    /* white outline */
    padding: 10px;              /* spacing inside the card */
    margin-bottom: 10px;        /* spacing between stacked cards */
    border-radius: 5px;         /* optional: rounded corners */
    background-color: rgba(0,0,0,0.5); /* optional: dark semi-transparent background */
    width: 100%;
}

.horizontal-line {
  height: 2px;
  width: 100%;
  margin-top:50px;
  background-color: white;
}

.describe-container {
  border: 2px solid #ccc;
  height: 75vh;
  position: sticky;
  top: 1rem;
  color: white;
  overflow-y: auto;
  border-radius: 5px;
}



/* Medium screens (laptops, tablets) */
@media (max-width: 1700px) {
  .describe-container {
    top: 35% !important; /* push it lower */
    left: 30% !important; /* adjust if needed */
    height: 60vh;
    
  }
}

.white{
  color: white;
}

.describe-card {
    border: 2px solid white;    /* white outline */
    padding: 10px;              /* spacing inside the card */
    margin-bottom: 10px;        /* spacing between stacked cards */
    border-radius: 5px;         /* optional: rounded corners */
    background-color: rgba(0,0,0,0.5); /* optional: dark semi-transparent background */
    width: 100%;
    height: 100%;
}

.providersdescribe-container{
  border: 2px solid #ccc; /* optional border */
  height: 75vh;
  left: 35%;
  position:fixed;
  color: white;
  overflow-y: auto;
  border-radius: 5px;
}

.notification-link {
    color: white;
    text-decoration: underline;
}

.notification-link:hover {
    color: white; /* keep it white on hover */
}

.describe-card {
    width: 100%;
}

.custom-intro-tooltip {
    background-color: #6ec1ff !important;
    color: white !important;
    border-radius: 20px !important; /* rounder bubble */
    font-size: 16px;
    padding: 16px 18px;
    box-shadow: 0 8px 24px rgba(0, 119, 204, 0.35);
}


.custom-intro-tooltip .introjs-arrow {
    border-top-color: #6ec1ff !important;
    border-bottom-color: #6ec1ff !important;
}

.custom-intro-tooltip .introjs-tooltiptext {
    color: white !important;
}

.custom-intro-tooltip .introjs-button {
    background-color: white;
    color: #0077cc;
    border-radius: 6px;
    border: none;
}


.custom-intro-tooltip .introjs-arrow.top {
    border-bottom-color: #6ec1ff !important;
}

.custom-intro-tooltip .introjs-arrow.bottom {
    border-top-color: #6ec1ff !important;
}

.custom-intro-tooltip .introjs-arrow.left {
    border-right-color: #6ec1ff !important;
}

.custom-intro-tooltip .introjs-arrow.right {
    border-left-color: #6ec1ff !important;
}
