body{
    font-family: Arial, Helvetica, sans-serif;
    /* width: 95%; */
    width: 100%;
    height:100%;
     background-color: #003366; 
}

.mimi-container{
    background-color: white; 
    /* how i will center the div for now  */
    /* margin-left: 10%; */
    /* border-radius: 2em;  */
}
#mimi-canvas{
    border: 2px solid #003366;
    background-color: #3295a8;
    /* min-height: 100vh; */
     /* width: 100%; */
}

button{
    /* margin-top: 12px;
    margin-bottom: 12px;
    background-color: #4CAF50; /* Green */
    /* border: none;  */
    color: white;
    /* padding: 5px 10px 10px 5px; */
    padding: 0 .5rem;
    margin: 0 1rem;
    /* text-align: center; */
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    /* width: 150px; */
    cursor: pointer; 
    white-space: nowrap;
}

.nav-button{
    border-radius: .3rem;
    padding: .3rem 1.5rem;
    background-color: #003366;
    outline: solid 2px rgb(255, 255, 255);
    border: none;
    font-weight: lighter;
}
/* #delete{
    background: lightcoral; 
} */
/* .mimi-container-header{
    /* display: grid;
    grid-template-columns: 10% 10% 10% 10% 10% 20% 10% 10%;
    grid-gap: 15px;  */
    /* display: flex;
    flex-direction: row;
} */ */
/* hides the input element from user */

.usr_input{
    background-color: #003366;
}

#user-input{
    caret-color: transparent;
    color: white; 
    border: none;
    border-top-style: hidden; 
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: groove;
}
#user-input:focus {
    outline: none;
}

.tab{
    /* background-color: grey; */
    background-color: white; 
    color:#003366;
    padding: .5rem;
    margin-top: 1.5rem;
    letter-spacing: .1rem;
    font-size: small;
    /* width: 109px; */
    float: left;
    cursor: pointer;
    border: 0.6px solid; 
    border-top-right-radius: .5rem;
    margin-right: .1rem;
}
.tab.current{
    background-color: white;
    border-color: #003366;
    margin-left: .5rem;
    margin-right: .5rem;
    padding-top: .3rem;
}

.tab-section{
    width: 100%;
}
.canvas-container{
    background-color: #003366;
    /* padding-left: .3rem; */
    padding-right: .3rem;
}
/* #new-tab{
    margin-left: 50%; 
} */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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); /* #003366 w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
    height: 40%;
    text-align: center; 
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #003366;
    text-decoration: none;
    cursor: pointer;
  }
  #modal-component{
    display: grid;
    grid-template-columns: auto;
  }


  /* Nishant */

*{
    padding: 0;
    margin: 0;
}

.mimi-container-header{
    /* background-color: #003366; */
    padding-top: 1rem;
    /* z-index: 1; */
   /* display: flex; */
}

.after_graphics {
    display: flex;
}

#hotlink{
    color: white;
    letter-spacing: .2rem;
}

/* .usr_input{
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 0;
} */

.left_buttons{
    flex-grow: 1;
}

.right_buttons {
    flex-grow: 4;
}

.right_right{
    background: rgba(255, 255, 255, 0.87);
    float: right;
    padding: .5rem .3rem;
    border-radius: .6rem;
    float: right;
}

.right_btn{
    border: none;
    background: none;
}

.hotlink_div{
    flex-grow: 1;
}

.hot_div_div{
    text-align: center;
}

.far, .fas {
    color: #003366;
}

#modal-component button{
    color: #003366;
    margin-top: 1rem;
}

#modal-component button :first-child{
    background-color: rgb(27, 90, 27);
}

#modal-component button :last-child{
    background-color: red;
}

/* @media screen and (max-width: 1200px) {
    #mimi-canvas{
        width: 1000px !important;
    }
  } */

/* ToolTips */

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    height: 60px;
    background-color: #0077EF;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    font-size: smaller;
  
    position: absolute;
    z-index: 1;
    
    margin-top: .5rem;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}
  
.tooltip:hover .tooltiptext {
    visibility: visible;
}