/* *************************
 *      ROYAL BUTTON       *
 **************************/
.royal-button {
  background-color: #FFD700/*#0b72cb*/; /* GOLD */
  color: black; /* white text */
  padding: 3px 5px; /* add some padding */
  font-size: 16px; /* larger font size */
  text-transform: uppercase; /* make text uppercase */
  cursor: default; /* change cursor on hover */
  transition: background-color 0.3s ease-in-out; /* smooth color transition */
}

.royal-button:hover {
  background-color: #0B72CB; /* blue color on hover */
}

.royal-button.loading {
  background-color: white;
}



/* *************************
 *   ANTI ROYAL BUTTON     *
 **************************/
 .antiroyal-button {
  display: inline-block; /* Change to block if needed */
  width: 120px; /* Adjust the width as desired */
  height: 50px; /* Adjust the height as desired */
  background-color: transparent;
  background-image: url("../images/goldbar.png"); 
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  color: black;
  font-size: 13px;
  text-transform: uppercase;
  cursor: default;
  transition: 0.4s ease-in-out;
  border:none;
}


.antiroyal-button:hover {
  background-image: url("../images/goldbar.png");
  cursor:pointer;
  font-style:italic;
  
}






/* *************************
 *  DROWDOWN ROYAL BUTTON  *
 **************************/

/* Style the dropdown button */
.dropbtn {
  background-color: #0b72cb; /* GOLD */
  color: black; /* white text */
  padding: 3px 5px; /* add some padding */
  font-size: 16px; /* larger font size */
  text-transform: uppercase; /* make text uppercase */

  cursor: pointer; /* change cursor on hover */
  display: table;
  transition: background-color 0.3s ease-in-out;
  margin-top: 10px;
  margin-right: 100px;
}

/* Hover cover for big buttons */
.dropbtn:hover {
  background-color: #FFD700;
}

/* The dropdown content collapsed */
.dropdown-content {
  display: none;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-out;

  top: calc(100% + 10px);
  
  white-space: nowrap;
  overflow: hidden;
}

/* Dropdown function */
.dropdown {
  position: relative;
  z-index: 0;
  pointer-events:auto;
}

/* Hover on Dropdown Button */
.dropdown:hover .dropdown-content {
  display: table;
  pointer-events:auto;
  
  position: relative;
  opacity: 1;
  visibility:visible;
}

/* Dropdown Items */
.dropdown-content a {
  color: black;
  padding: 10px 15px;
  display: block;
  font-size: 15px;
  position:relative;
  margin-top: 5px;
  transition: background-color 0.3s ease-in-out;
}

.dropdown-content a:hover {
  background-color: #e6e6e6a2;
}




