.d-f-r{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.d-flex{
    display: flex;
}

.items-center{
    align-items: center;
}

.justify-center{
    justify-content: center;
}

.flex-start{
    justify-content: flex-start;
}

.t-head {
    margin: 14px 5px 0px 40px;
    width: 150px;
    text-align: left;
}

#add-rule{
    margin: 20px 0px;
    padding: 2px 30px;
}

.m-t-20{
    margin-top: 20px;
}

/* The Delete Rule Modal */
.w-replace-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;

  }
  
  .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .popup-button-cnt{
    display: flex;
    justify-content: center;
    gap: 30px;
  }