    /* Modal styles */
    /*.modal {*/
    /*    display: none;*/
    /*    position: fixed;*/
    /*    z-index: 999;*/
    /*    padding-top: 80px;*/
    /*    right:auto;*/
    /*    top: 100px !important;*/
    /*    width: 100%;*/
    /*    height: 90%;*/
    /*    overflow: auto;*/
    /*    background-color: rgba(0, 0, 0, 0.5);*/
    /*}*/
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    .modal-content {
        background-color: #fff;
        margin: auto;
        padding: 30px;
        border-radius: 16px;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        text-align: center;
        font-family: 'Segoe UI', sans-serif;
        position: relative;
    }

    .close {
        color: #aaa;
        position: absolute;
        right: 20px;
        top: 15px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: black;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 15px;
        color: #333;
    }

    .modal-message {
        font-size: 16px;
        color: #555;
    }

    .modal-message a {
        color: #2b7de9;
        text-decoration: none;
        font-weight: bold;
    }

    .modal-message a:hover {
        text-decoration: underline;
    }
    .modal-box {
        border: 2px solid #0b6e4f;
        padding: 30px;
        border-radius: 12px;
        background-color: #e6ffe6;
        text-align: center;
        max-width: 80%;
        position:relative;
        bottom: 100px;
      }
    
      .modal-box > div {
        margin-bottom: 10px;
      }
    
      .modal-heading,
      .modal-body,
      .modal-footer {
        outline: none;
      }
    
      .modal-heading {
        font-weight: bold;
        font-size: 24px;
        color: #004d00;
      }
    
      .modal-body {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
        font-size: 12px;
      }
    
      .modal-icon {
        font-size: 28px;
      }
    
      .highlight {
        outline: 3px dashed red;
        border-radius: 6px;
      }
    
      .modal-footer {
        font-size: 16px;
        padding: 12px;
        background-color: #fff;
        border: 1px solid #0b6e4f;
        border-radius: 6px;
        margin-top: 10px;
      }