
.drop-btn-group button {
  display: inline-block;
  border: 1px solid #444;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #666;
  margin-left: 5px;
  width: auto;
}

.dropbtnd {
    background-color: #923025;
    color: white;
    padding: 2px 16px;
    font-size: 20px;
    cursor: pointer;
    min-width: 90%;
    max-width: 90%;

}

.dropdownd {
  position: relative;
  display: block;
}

.dropdownd-content {
  float: left;
  display: none;
  position: absolute;
  /*left: 140px;*/
  left: 85%;
  top: 0px;
  background-color: #923025;
  color: white;  
  width: 100%;  
  /*min-width: 300px;*/
  /*max-width: 500px;*/
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 10px;
  z-index: 1;  
}

.dropdownd-content a {
  font-size: 20px;
  padding: 2px 16px;
  /*min-width: 400px;    */

  text-decoration: none;
  color: white;     
  border-style: solid;
  border-width: 1px;
  border-color: #666;
  display: block;
  border-radius: 10px;      
}

.dropdownd-content a:hover {
  background-color: #5a201e;
}

.dropdownd:hover .dropdownd-content {
  display: block;
  cursor: pointer;
}

.dropdownd:hover .dropbtnd {
    background-color: #5a201e;
}