/* The Modal (background) */
 .modalCompose {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    font-size: 14px !important;
  }
  
  /* Modal Content/Box */
  .modalCompose-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 0px 20px;
    border: 1px solid #888;
    height: 80vh;
    width: 65%;
    border-radius: 10px;
  }
  
  /* The Close Button */
  .closeCompose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .modalComposeDiv{
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px;
    height: 72%;
    overflow-y: auto;
  }
  
  .closeCompose:hover,
  .closeCompose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  } 
  
  .headingComposeText{
    font-size: 25px !important;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .headingComposeText img{
    height: 30px;
    margin-right: 10px;
    position: relative;
    bottom: 3px;
  }
  .modalComposeBtnGroup {
    display: flex !important;
    justify-content: space-between;
    align-items: center !important;
    margin-top: 6px !important;
  }
  .modalComposeBtn{
    /* display: inline-block; */
    font-weight: 400 !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    user-select: none !important;
    border: 1px solid transparent !important;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    padding: .305rem .50rem !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    border-radius: .25rem !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
    margin: 0px 5px;
  }

  .modalComposeBtnClose{
    color: #fff !important;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
  }
  .modalComposeBtnGenerate{
    color: #fff !important;
    background-color: #5F55AF;
    border-color: #5F55AF !important;
  }
  .modalComposeBtnUse{
    color: #fff !important;
    background-color: #0075c8;
    border-color: #005795 !important;
  }
  .modalComposeBtnStop{
    line-height: 0px !important;
  background: #d94545;
  color: white;
  }
  .formCompose-control{
    height: 35px;
    background: #ecf0f4;
    border-color: transparent;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    text-align: left;
  }
 
  .modalComposeDiv select{
    width: 20% !important;
  }
  .labelCompose{
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 2px;
  }


/* Container for the dropdown content */
.dropdownCompose {
  width: 16% !important;
}
.headOption{
  display: flex;
  justify-content: space-between;
}
/* Hidden content of the dropdown */
.dropdown-contentCompose {
  /* display: none; */
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 55px;
  right: 8%;
  border-radius: 5px;
}

/* Each item in the dropdown */
.dropdown-contentCompose label {
  color: black;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
}

/* Change color on hover */
.dropdown-contentCompose label:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown content when the button is clicked */
.showCompose {
  display: block !important;
}

