/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */

 .button-style {
  display: inline-block;
  padding: 2px 8px;
  font-size: small;
  background-color: black;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.button-style:hover {
  background-color: darkgray;
}

.delete-button {
  background-color: white;
  color: red;
  border-style: solid;
  border-color: lightcoral;
  border-width: 1px;
}

.delete-button:hover {
  background-color: lightcoral;
  color: white;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  color: black;
  font-size: 14px;
  border: 1px solid black;
}

.tooltip-text {
  visibility: hidden;
  width: 400px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  left: 130%; /* Position to the right of the icon */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Ensure perfect vertical centering */
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}


.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
