.page {
    overflow-x: hidden;
}

.text {
    text-align: center;
}

.v-canvas-container {
    width: 101%;
    height: 100%;
    color: black;
}

.v-datalist-container {
    height: 100%;
}

.v-slider-full {
    width: 80%;
}

.input-form {
    display: none;
    color: black;
}

.add {
    font-size: 0.90rem;
}

.left {
    order: 1;
}

.exp {
    order: 2;
}

.right {
    order: 3;
}

#top-border {
    border-top: 1px solid black;
}

.v-datalist-title {
    /* background-color: #2C9AD1; */
    /* background-blend-mode: overlay; */
    /* border-radius: 1rem; */
    border-bottom: 0;
}

.v-collapsible-instruction-container {
    width: 60%;
    margin: auto;
    border-radius: 0.25rem;
}


.v-instruction-container {
    width: 80%;
    margin: 0 auto;
    border:.2rem solid #97d23d;
    justify-content: flex-start;
}

.v-collapsible {
    width: 98%;
    margin: auto;
}

.v-collapsible::after {
    size: 1rem;
}

.v-checkbox {
    margin-bottom: 0.1rem;
}

#procedure-message {
    display: none;
    position: fixed;
    max-width: 100vw; /* Full width */
    max-height: 90vh; /* Prevent overflow */
    overflow-y: auto; /* Scroll if content exceeds height */
    background: linear-gradient(135deg, #f0f4f8, #d6e1e7); /* Gradient background */
    z-index: 1000;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow for more depth */
    border-radius: 16px; /* Rounded corners for a smoother look */
    text-align: left;
    top: 45%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    animation: fadeIn 0.5s ease-out; /* Fade-in animation */
    border: 2px solid #3498db; /* Border with a light blue color */
}

/* Add a subtle fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Optional: add hover effect */
#procedure-message:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    transform: translate(-50%, -50%) scale(1.05); /* Slight zoom effect */
}

.instr-font {
    font-size: 1rem;
    color: #000;
}


.v-collapsible-instruction-container {
  width: 60%;
  margin: auto;
  border-radius: 0.25rem;
}

.v-collapsible {
  width: 98%;
  margin: auto;
}

.v-collapsible::after {
  size: 1rem;
}

#output {
      padding: 10px;
      margin: 10px;
      border: 1px solid #ccc;
      background-color: #f0f0f0;
      font-family: Arial, sans-serif;
    }

#intermediate-vertices {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

#current-vertices {
    font-family: monospace;
    line-height: 1.4;
    max-height: 150px;
    overflow-y: auto;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.vertex-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: yellow;
    border-radius: 50%;
    margin-right: 5px;
}