@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) 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
 * 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.
 *


 */

.modal {
  position: fixed;
  z-index: 1;
  padding: 2em;
  width: 30rem;
  height: auto;
  /* Centering */
  left: 50%;
  top: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  background-color: rgba(255, 255, 255, 1);
  border-radius: 5px;
  /* Add the drop shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.modal-image {
  position: fixed;
  z-index: 1;
  padding: 2em;
  height: auto;
  /* Centering */
  left: 50%;
  top: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  background-color: rgba(255, 255, 255, 1);
  border-radius: 5px;
  /* Add the drop shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #ddd;
  border: 1px solid #ccc;
}

::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #898686;
}

.sidebarinvert {
  border-radius: 0 0px 0px 0px;
  color: white;
  z-index: 50;
}

.sidebarinvert:before,
.sidebarinvert:after {
  box-shadow: 0 20px 0 0 #111f4d;
  content: "";
  left: 124px;
  height: 40px;
  width: 40px;
  position: fixed;
}

.sidebarinvert:before {
  top: 0px;
  border-bottom-left-radius: 50%;
  z-index: 50;
  transform: rotateX(180deg);
}

.sidebarinvert:after {
  bottom: 0px;
  border-bottom-right-radius: 50%;
  transform: rotate(90deg);
  z-index: 50;
}

/* rotate-90 z-50 rounded-br-sm bottom-0 w-[40px] h-[40px] left-[96px] fixed */

.star-button.active {
  background-color: #111f4d;
}
