/* Overlay */
.order_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  /* Modal */
  .order_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
  }

  .order_modal_header {
    font-size: 20px;
    font-weight: bold;
    color: #113d24;
    margin-bottom: 10px;
  }

  .order_modal_body {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #555;
  }

  .order_modal_body a {
    color: #113d24;
    font-weight: bold;
    text-decoration: none;
  }

  .order_modal_footer button {
    background-color: #113d24;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .order_modal_footer button:hover {
    background-color: #145f34;
  }

  /* Open Modal Button */
  .open-modal {
    display: inline-block;
    background-color: #113d24;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    margin: 30px auto;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
