@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.
 *


 */
@tailwind base;
@tailwind components;
@tailwind utilities;


body {
  font-family: "Roboto", Sans-Serif, serif;
}

.side-panel-remark, .side-panel {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  color: black;
  overflow-x: hidden;
  transition: 0.2s;
  padding-top: 60px;
}


/*Компоненты*/
.overflow-custom {
  overflow: auto;
  scroll-behavior: smooth;
}

.overflow-custom::-webkit-scrollbar {
  width: 8px;
}

.overflow-custom::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px!important;
}

.overflow-custom::-webkit-scrollbar-thumb {
  background: #888; /* Цвет ползунка */
  border-radius: 10px!important; /* Скругление углов ползунка */
  border: 2px solid #f1f1f1!important; /* Отступ вокруг ползунка */
}

.overflow-custom::-webkit-scrollbar-thumb:hover {
  background: #011C2B; /* Цвет ползунка при наведении */
}
/*Кнопки*/
.main_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #02273A;
  color: white;
  border-radius: 5px;
  padding: .625rem;
  transition: all 0.2s ease-in-out;
  &:hover{
    background-color: #000E15;
  }
}


.second_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #303030;
  border-radius: .5rem;
  transition: all 0.2s ease-in-out;
  padding: 5px 8px;
  &:hover{
    background-color: #0000000d;
  }
}
/*Уведомления*/
