.sign_in{

    float: right;
}

.Logs{

    margin: auto;
    text-align: center;
    float: right;
    border-style: solid;
    border-color: green;
    border-width: 2px;
    height: 300px;
    width: 40%;
}

.center_chat{

    border-style: solid;
    border-color: orange;
    border-width: 1px;
}

.update{

    background-color: green;
    color: white;
    padding: 12px;
    font-size: 12px;
    border-radius: 5px;
}

.delete_account{

    float: right;
}

.delete_account p{

    color: red;
}

.delete_btn{

    background-color: red;
    color: white;
    padding: 16px;
    font-size: 16px;
    border-radius: 5px;
}

.chat_options{

    float: left;
    display: block;
    margin: auto;
    text-align: center;
    border-style: solid;
    border-color: green;
    border-width: 2px;
    width: 50%;
    height: 300px;
}

.chat{

    background-color: #0000FF;
    color: white;
    padding: 16px;
    font-size: 16px;
    border-radius: 5px;
}

.chat:hover{

    background-color: forestgreen;
    color: white;
}

.nav{

    padding: 5px;
}

.nav_btn:hover{

    background-color: #0000ff;
    color: white;
}

.nav_btn{

  float: right;
  background-color: #00CCFF;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}


/* Dropdown Button */
.dropbtn {
  /*background-color: #4CAF50;*/
  background-color: #00ccff;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #00ccff; color: white;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #0000ff;}





/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion:after{

    content: '\02795'; /*unicode character for 'plus' sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after{

    content: "\2796"; /*unicode character for 'minus' sign (-) */
}


.newchat{

    display: block;
    margin: auto;
    text-align: center;
    position: center;
}

/*
.support_chat{

    background-color: blue;
    color: black;
    border-color: green;
    border-radius: 1px;
}
*/

.chat_username{

    display: block;
    margin: auto;
    text-align: center;
    float: left;
    border-style: solid;
    border-color: 2px;
}

.chat_chat{

    display: block;
    margin: auto;
    text-align: center;
    position: center;
    border-style: solid;
    border-color: 2px;
}

.chat_time{

    display: block;
    margin: auto;
    text-align: center;
    float: right;
    border-style: solid;
    border-color: 2px;
}



