/* Floating Button */
#tamasino-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;  
    height: 50px;
    background-color: #28a745; 
    border-radius: 25px;  
    border: none;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#tamasino-button span {
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-align: center;
}

#tamasino-button .tamasino-icon-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

#tamasino-button img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}


/* Form container */
#tamasino-form-wrapper {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 260px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 9999;
}

#tamasino-form input {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px 10px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

#tamasino-form button {
  background-color: #28a745;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

#tamasino-success {
  margin-top: 10px;
  color: green;
  font-size: 13px;
  text-align: center;
}
