/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* globals.css */

/* Сброс базовых стилей */
html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Основной контейнер */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Заголовок страницы */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.page-actions {
  display: flex;
  gap: 1rem;
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #487FFF;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none; /* для <a> */
  transition: opacity 0.3s ease;
}

.btn:hover {
  background-color: #025aa5;
}

/* Карточки */
.card {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card-subtitle {
  font-size: 0.9rem;
  color: #666;
}

.card-body {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Кнопка-троеточие */
.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #666;
}

.menu-button:hover {
  color: #333;
}

/* Поля ввода */
.select,
.input,
.textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  outline: none;
}

.select:focus,
.input:focus,
.textarea:focus {
  border-color: #aaa;
}

/* Мелкие "ярлычки" (дни недели, теги) */
.tag {
  display: inline-block;
  background-color: #eee;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.25rem;
}

.tag-blue {
  background-color: #d9ecff;
  color: #0275d8;
}

/* Дополнительные стили */
.schedule-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.schedule-days {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.time-input {
  width: 140px;
}

/* Выравнивание по центру */
.text-center {
  text-align: center;
}

.tilda {
  width: 100%;
  background: #487FFF;
  color: #FFFFFF;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 1rem;
}

/* Выпадающее меню */
.dropdown-menu {
  position: absolute;
  right: 25px;
  top: 45px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
  width: 150px;
  display: flex;
  flex-direction: column;
}

.dropdown-item {
  padding: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  width: 95%;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown-item.delete {
  color: #d9534f;
}

.dropdown-item.delete:hover {
  background-color: #f8d7da;
}

a {
  text-decoration: none;
  color: black; /* Или любой другой цвет */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

a:hover {
  text-decoration: none;
  color: #487FFF;

}

/* Основные стили формы */
.login-container {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem;
}

.login-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.form-group input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1;
}

.submit-button {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background: linear-gradient(135deg, #556cd6 0%, #653b91 100%);
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
}

.error-message {
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: #fee2e2;
  color: #dc2626;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.account-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: var(--background-secondary);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  color: var(--text-color);
}

.account-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.account-section {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--background-tertiary);
  border-radius: 6px;
}

.account-section h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.account-section p {
  font-size: 16px;
  line-height: 1.4;
}

.loading-text {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
}

.modal-overlay {
  padding: 15px;
}

.dropdown-menu {
  position: absolute; /* Чтобы крестик позиционировался внутри меню */
  padding: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-close-btn {
  position: absolute;
  top: 1px;
  right: 5px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  padding: 0 0px;
}

.dropdown-close-btn:hover {
  color: #333;
}

.modal-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.reminder {
  color: #f5424e;
  background-color: #ffe6e6;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 0.5rem;
  border-radius: 16px;
}

.error-text {
  color: red;
  font-size: 1.1rem;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  max-width: 90%;
}

.hidden {
  display: none;
}

.animate-pulse {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loadingPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.loading-card {
  width: 100%;
  height: 600px;
  background-color: #e0e0e0;
  border-radius: 16px;
  animation: loadingPulse 1.5s infinite ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.equalizer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 150px;           /* увеличенная высота */
  padding: 1rem;           /* разумный внутренний отступ */
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.equalizer-bar {
  width: 8px;
  background: limegreen;
  border-radius: 4px;
  transition: height 0.2s ease;
}

.question {
  color: #666;
}

.answer {
  color: #333;
}

.dialog {
  margin-top: 1rem;
  padding: 1rem;
  max-height: 200px;
  overflow-y: scroll;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Контейнер для меню */
.prompt-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 220px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.2s ease-out;
  z-index: 1000;
  overflow: hidden;
}

/* Пункт меню */
.prompt-option {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.prompt-option:hover {
  background-color: #f3f4f6;
}

/* Анимация появления */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prompt-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"src/app/layout.tsx","import":"Inter","arguments":[{"subsets":["latin"],"variable":"--font-inter"}],"variableName":"inter"} ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Inter Fallback';src: local("Arial");ascent-override: 90.44%;descent-override: 22.52%;line-gap-override: 0.00%;size-adjust: 107.12%
}.__className_f367f3 {font-family: 'Inter', 'Inter Fallback';font-style: normal
}.__variable_f367f3 {--font-inter: 'Inter', 'Inter Fallback'
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/components/navButton.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
.navButton_button__s9pyj {
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  white-space: nowrap;
}

.navButton_button__s9pyj:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navButton_button__s9pyj:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .navButton_button__s9pyj {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .navButton_button__s9pyj {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/components/navbar.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
.navbar_header__I8sxe {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar_nav__vwA6_ {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
}

.navbar_spacer___7lv5 {
  width: 150px;
  flex-shrink: 0;
}

.navbar_links__TcavX {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar_link__z2_NA {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.navbar_link__z2_NA:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar_linkActive__a9EP2 {
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar_buttons__0Pitc {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .navbar_nav__vwA6_ {
    padding: 1rem 15px;
    gap: 15px;
  }

  .navbar_links__TcavX {
    gap: 20px;
  }

  .navbar_link__z2_NA {
    font-size: 0.95rem;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .navbar_nav__vwA6_ {
    flex-wrap: wrap;
    padding: 1rem 12px;
  }

  .navbar_spacer___7lv5 {
    display: none;
  }

  .navbar_links__TcavX {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .navbar_link__z2_NA {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .navbar_buttons__0Pitc {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .navbar_nav__vwA6_ {
    padding: 0.75rem 10px;
  }

  .navbar_links__TcavX {
    gap: 10px;
  }

  .navbar_link__z2_NA {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .navbar_buttons__0Pitc {
    gap: 8px;
  }
}

