
.custome-modal {
    margin: 10px auto;
    padding: 1.5rem;
    border: 1px solid #ced4da;
    border-radius: 10px;
    width: 400px;
    align-self: center;
    animation: fadeIn 0.7s;
  }

  .custome-modal::backdrop {
    background-color: rgba(15, 15, 15, 0.523);
  }

  .custome-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }

  .custome-modal-title {
    font-size: 1.3rem;
    font-weight: bolder;
  }

  .custeom-modal-body div, .input-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .input-control{
    margin: 15px 0;
  }

  .custeom-modal-label {
    font-size: 1rem;
  }

  input#phone-number {
    font-family: inherit;
    padding: 0.7rem;
    font-size: 1.2rem;
    text-indent: 5px;
    border-radius: 5px;
    border: 1px solid #ced4da;
  }

  input#phone-number::placeholder{
    font-size: 1rem;
  }

  input#phone-number:user-invalid {
  /* border-color: red; */
  }



  .input-control:has(input:user-invalid)::after{
    content: attr(data-error);
    font-size: 0.8rem;
    color: red;

  }

  input#phone:focus {
    outline: none;
    border: 1px solid #ced4da;
  }

  .custome-modal_save-btn {
    font-family: inherit;
    border: none;
    background-color: #d50057;
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
  }

  .custom-toast {
    position: fixed;
    top: 20px;
    left: 40%;
    margin: auto;
    background-color: #0b8502;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s ease; /* Transition for opacity */
    z-index: 2000;
}


  @keyframes fadeIn {

    0%{
        transform: translateY(-70px);
        opacity: 0;
    }

    100%{
        transform: translateY(0px);
        opacity: 1;
    }
    
  }
  .alert-danger {
	--bs-alert-border-color: #f8d7da !important; 
	border-color: #f8d7da !important; 
  }
  