﻿@charset "UTF-8";
.nt-page-header__help-btn {
  width: 32px;
  height: 32px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  border-radius: 50%;
  color: #0EA5E9;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-page-header__help-btn:hover {
  background: rgba(0, 136, 204, 0.2);
}

.nt-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nt-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.nt-status--active {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.nt-status--paused {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.nt-status--completed {
  background: rgba(14, 165, 233, 0.12);
  color: #0EA5E9;
  border: 1px solid rgba(14, 165, 233, 0.25);
}
.nt-status--archived {
  background: rgba(139, 148, 158, 0.12);
  color: #8B949E;
  border: 1px solid rgba(139, 148, 158, 0.25);
}
.nt-status--cancelled {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.nt-status--root {
  display: none;
}

.nt-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.nt-card {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease;
}
.nt-card:hover {
  border-color: rgba(0, 136, 204, 0.3);
}
.nt-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.nt-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  margin-right: 12px;
}
.nt-card__actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.nt-card__action-btn {
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #8B949E;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-card__action-btn:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-card__action-btn--danger:hover {
  color: #EF4444;
  border-color: #EF4444;
}
.nt-card__description {
  font-size: 13px;
  color: #8B949E;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nt-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nt-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #8B949E;
}
.nt-card__meta-item svg {
  width: 13px;
  height: 13px;
}
.nt-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(45, 51, 59, 0.6);
}
.nt-card__goal-link {
  font-size: 11px;
  color: #0EA5E9;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nt-card__goal-link svg {
  width: 12px;
  height: 12px;
}
.nt-card__count {
  font-size: 11px;
  color: #8B949E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nt-card__count svg {
  width: 12px;
  height: 12px;
}

.nt-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.nt-page-header__title {
  font-size: 22px;
  font-weight: 700;
}
.nt-page-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nt-page-header__new-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #0088CC, #006699);
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
  transition: all 0.25s ease;
}
.nt-page-header__new-btn:hover {
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.nt-status-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nt-status-filters__btn {
  padding: 5px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #2D333B;
  background: #161B22;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-status-filters__btn:hover {
  color: #FFFFFF;
}
.nt-status-filters__btn.is-active {
  background: #0088CC;
  border-color: #0088CC;
  color: #FFFFFF;
}

.nt-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nt-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.nt-modal {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform opacity 0.25s ease;
  overflow: hidden;
}
.is-open .nt-modal {
  transform: translateY(0);
}
.nt-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  flex-shrink: 0;
}
.nt-modal__header--task {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #2D333B;
}
.nt-modal__header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nt-modal__header-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.35);
  color: #0EA5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nt-modal__title {
  font-size: 16px;
  font-weight: 700;
}
.nt-modal__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-modal__close:hover {
  background: #2D333B;
  color: #FFFFFF;
}
.nt-modal__tabs {
  display: flex;
  gap: 4px;
  padding: 16px 24px 0;
  border-bottom: 1px solid #2D333B;
  flex-shrink: 0;
}
.nt-modal__tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #8B949E;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
  transition: all 0.25s ease;
}
.nt-modal__tab:hover {
  color: #FFFFFF;
}
.nt-modal__tab.is-active {
  color: #0EA5E9;
  border-bottom-color: #0EA5E9;
}
.nt-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}
.nt-modal__body::-webkit-scrollbar {
  width: 6px;
}
.nt-modal__body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-modal__body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-modal__panel {
  padding: 24px;
  display: none;
}
.nt-modal__panel.is-active {
  display: block;
}
.nt-modal__content-wrap {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.nt-modal__field {
  margin-bottom: 20px;
}
.nt-modal__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.nt-modal__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.nt-modal__context-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0EA5E9;
  background: rgba(0, 136, 204, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
}
.nt-modal__input, .nt-modal__textarea, .nt-modal__select {
  width: 100%;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 10px 16px;
  transition: border-color box-shadow 0.25s ease;
}
.nt-modal__input::placeholder, .nt-modal__textarea::placeholder, .nt-modal__select::placeholder {
  color: rgba(139, 148, 158, 0.5);
}
.nt-modal__input:focus, .nt-modal__textarea:focus, .nt-modal__select:focus {
  outline: none;
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.08);
}
.nt-modal__textarea {
  resize: vertical;
  min-height: 80px;
}
.nt-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nt-modal__row#nt-appointment-datetime-row {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}
.nt-modal__select-wrapper {
  position: relative;
}
.nt-modal__select-wrapper svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #8B949E;
  width: 16px;
  height: 16px;
}
.nt-modal__select-wrapper select {
  appearance: none;
  padding-right: 36px;
}
.nt-modal__input--title {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 14px;
}
.nt-modal__input--with-icon {
  padding-left: 38px;
}
.nt-modal__input-icon-wrap {
  position: relative;
}
.nt-modal__input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B949E;
  pointer-events: none;
  width: 16px;
  height: 16px;
}
.nt-modal__field-error {
  font-size: 11px;
  color: #EF4444;
  min-height: 14px;
  margin-top: 4px;
}
.nt-modal__field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.nt-modal__field-header .nt-modal__label {
  margin-bottom: 0;
}
.nt-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #2D333B;
  flex-shrink: 0;
}
.nt-modal__footer--task {
  gap: 12px;
  padding: 16px 32px;
}
.nt-modal__footer-left, .nt-modal__footer-right {
  flex: 1;
  display: flex;
  align-items: center;
}
.nt-modal__footer-left {
  justify-content: flex-start;
}
.nt-modal__footer-right {
  justify-content: flex-end;
}
.nt-modal__footer-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nt-modal__save-btn {
  padding: 12px 32px;
  background: #0088CC;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-modal__save-btn:hover {
  background: rgb(0, 163.2, 244.8);
}
.nt-modal__save-btn--draft {
  background: rgba(45, 51, 59, 0.6);
  color: #8B949E;
}
.nt-modal__save-btn--draft:hover {
  background: rgba(45, 51, 59, 0.9);
  color: #FFFFFF;
}
.nt-modal__cancel-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-modal__cancel-btn:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-modal__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #2D333B;
  background: transparent;
  color: #8B949E;
  transition: all 0.25s ease;
}
.nt-modal__action-btn:hover {
  color: #FFFFFF;
  border-color: rgba(139, 148, 158, 0.4);
}
.nt-modal__action-btn--danger {
  border-color: rgba(239, 68, 68, 0.3);
  color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
}
.nt-modal__action-btn--danger:hover {
  background: rgba(239, 68, 68, 0.15);
}
.nt-modal__action-btn--timer {
  border-color: rgba(14, 165, 233, 0.3);
  color: #0EA5E9;
  background: rgba(14, 165, 233, 0.08);
}
.nt-modal__action-btn--timer:hover {
  background: rgba(14, 165, 233, 0.15);
}
.nt-modal__action-btn--complete {
  border-color: rgba(34, 197, 94, 0.3);
  color: #22C55E;
  background: rgba(34, 197, 94, 0.08);
}
.nt-modal__action-btn--complete:hover {
  background: rgba(34, 197, 94, 0.15);
}
.nt-modal__action-btn--more {
  background: rgba(45, 51, 59, 0.4);
}
.nt-modal__status-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}
.nt-modal__status-banner--cancelled {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}
.nt-modal__status-banner--cancelled .nt-modal__status-text {
  color: rgba(239, 68, 68, 0.8);
}
.nt-modal__status-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.nt-modal__status-text {
  color: #0EA5E9;
}
.nt-modal__status-date-wrap {
  position: relative;
}
.nt-modal__status-date-input {
  background: rgba(11, 14, 20, 0.6);
  border: 1px dashed #2D333B;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  color: #FFFFFF;
  cursor: pointer;
  width: 100px;
  text-align: center;
  transition: all 0.25s ease;
}
.nt-modal__status-date-input:hover {
  border-color: #0088CC;
  background: rgba(0, 136, 204, 0.1);
}
.nt-modal__status-reset {
  background: rgba(45, 51, 59, 0.4);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-modal__status-reset:hover {
  background: rgba(45, 51, 59, 0.8);
  color: #FFFFFF;
}
.nt-modal__actions-dropdown {
  position: relative;
  display: inline-block;
}
.nt-modal__actions-dropdown:hover .nt-modal__actions-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nt-modal__actions-menu {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-width: 180px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity transform 0.25s ease;
  z-index: 100;
  padding: 6px 0;
}
.nt-modal__actions-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.nt-modal__actions-item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #8B949E;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.nt-modal__actions-item:hover {
  background: rgba(45, 51, 59, 0.4);
  color: #FFFFFF;
}
.nt-modal__actions-item svg {
  opacity: 0.7;
  flex-shrink: 0;
}
.nt-modal__actions-item--danger {
  color: rgba(239, 68, 68, 0.8);
}
.nt-modal__actions-item--danger:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.nt-modal__side-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  background: #161B22;
  border-left: 1px solid #2D333B;
  display: flex !important;
  flex-direction: column;
  overflow-y: auto;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nt-modal__side-panel::-webkit-scrollbar {
  width: 6px;
}
.nt-modal__side-panel::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-modal__side-panel::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-modal__side-panel.is-open {
  transform: translateX(0);
  pointer-events: all;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
}
.nt-modal__content-wrap {
  position: relative;
  display: flex;
  flex: 1;
  overflow: hidden;
}
@media (max-width: 600px) {
  .nt-modal__side-panel {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60vh;
    border-left: none;
    border-top: 1px solid #2D333B;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nt-modal__side-panel.is-open {
    transform: translateY(0);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  }
}
.nt-modal--task {
  max-width: 760px;
}
.nt-modal--task .nt-modal__body {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  flex: 1;
}
.nt-modal--task .nt-modal__body::-webkit-scrollbar {
  width: 6px;
}
.nt-modal--task .nt-modal__body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-modal--task .nt-modal__body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-modal--task .nt-modal__field {
  margin-bottom: 0;
}
.nt-modal--task .nt-modal__header {
  padding: 20px 32px 16px;
}
.nt-modal--task .nt-modal__footer {
  padding: 16px 32px;
}
.nt-modal--wide {
  width: min(1100px, 92vw);
  max-height: 88vh;
  max-width: 1100px;
}
.nt-modal--wide .nt-modal__body {
  overflow-y: auto;
  padding: 24px;
}
.nt-modal--wide .nt-modal__body::-webkit-scrollbar {
  width: 6px;
}
.nt-modal--wide .nt-modal__body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-modal--wide .nt-modal__body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-modal--reminder {
  max-width: 480px;
  overflow: visible;
  max-height: none;
}
.nt-modal--reminder .nt-modal__body {
  overflow: visible;
  max-height: none;
}
.nt-modal__header-icon-wrap--warning {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.35);
  color: #F97316;
}
.nt-modal__subtitle {
  font-size: 12px;
  color: #8B949E;
  margin-top: 2px;
  line-height: 1.5;
}
.nt-modal--morning-alert {
  max-width: 600px;
}
.nt-modal--morning-alert .nt-modal__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #2D333B;
  align-items: flex-start;
}
.nt-modal--morning-alert .nt-modal__body {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nt-modal--morning-alert .nt-modal__save-btn--secondary {
  background: rgba(45, 51, 59, 0.6);
  color: #8B949E;
}
.nt-modal--morning-alert .nt-modal__save-btn--secondary:hover {
  background: rgba(45, 51, 59, 0.9);
  color: #FFFFFF;
}
.nt-modal--morning-alert .nt-modal__footer-main {
  grid-template-columns: 1fr;
}

.nt-side-panel__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}
.nt-side-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nt-side-panel__close {
  background: none;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-side-panel__close:hover {
  color: #FFFFFF;
}

.nt-duration-picker__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.nt-duration-picker__preset {
  padding: 4px 10px;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-duration-picker__preset:hover {
  border-color: #0088CC;
  color: #0EA5E9;
}
.nt-duration-picker__preset.is-active {
  background: rgba(0, 136, 204, 0.15);
  border-color: #0088CC;
  color: #0EA5E9;
}
.nt-duration-picker__preset--custom {
  padding: 4px 8px;
  background: transparent;
  border: 1px dashed #2D333B;
  border-radius: 6px;
  color: #8B949E;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-duration-picker__preset--custom:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-duration-picker__selected {
  font-size: 12px;
  color: #0EA5E9;
  font-weight: 600;
  min-height: 18px;
}

.nt-searchable-select {
  position: relative;
}
.nt-searchable-select__dropdown {
  display: none;
  position: fixed;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  z-index: 1050;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.nt-searchable-select__dropdown::-webkit-scrollbar {
  width: 6px;
}
.nt-searchable-select__dropdown::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-searchable-select__dropdown::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-searchable-select__dropdown.is-open {
  display: block;
}
.nt-searchable-select__option {
  padding: 9px 14px;
  font-size: 13px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-searchable-select__option:hover {
  background: rgba(0, 136, 204, 0.1);
}
.nt-searchable-select__option--create {
  color: #0EA5E9;
  font-weight: 600;
  border-top: 1px solid #2D333B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  justify-content: flex-start;
}
.nt-searchable-select__option--empty {
  color: #8B949E;
  font-style: italic;
}
.nt-searchable-select__option--project {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13px;
  color: var(--nt-text, #E6EDF3);
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-searchable-select__option--project:hover {
  background: rgba(var(--nt-primary-rgb, 88, 166, 255), 0.1);
}
.nt-searchable-select__option--project + .nt-searchable-select__option--project {
  border-top: 1px solid rgba(var(--nt-border-rgb, 48, 54, 61), 0.6);
  margin-top: 2px;
  padding-top: 10px;
}
.nt-searchable-select__option--delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 28px;
  font-size: 12px;
  color: var(--nt-text-muted, #8B949E);
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-searchable-select__option--delivery:hover {
  background: rgba(var(--nt-primary-rgb, 88, 166, 255), 0.07);
  color: var(--nt-text, #E6EDF3);
}
.nt-searchable-select__option-arrow {
  font-size: 11px;
  color: var(--nt-text-muted, #8B949E);
  flex-shrink: 0;
  opacity: 0.7;
}
.nt-searchable-select__selected {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nt-searchable-select__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(0, 136, 204, 0.12);
  border: 1px solid rgba(0, 136, 204, 0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #0EA5E9;
}
.nt-searchable-select__tag-remove {
  background: transparent;
  border: none;
  color: #0EA5E9;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
}
.nt-searchable-select__tag-remove:hover {
  opacity: 1;
}

.nt-tag-field {
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  min-height: 44px;
  transition: border-color box-shadow 0.25s ease;
}
.nt-tag-field:focus-within {
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.08);
}
.nt-tag-field__tags {
  display: contents;
}
.nt-tag-field__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nt-tag-field__tag-remove {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}
.nt-tag-field__tag-remove:hover {
  opacity: 1;
}
.nt-tag-field__input.nt-modal__input {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 2px 4px;
  font-size: 13px;
  width: auto;
  min-width: 120px;
  flex: 1;
}
.nt-tag-field__input.nt-modal__input:focus {
  border: none;
  box-shadow: none;
}

.nt-triade-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nt-triade-btns--full {
  gap: 0;
}
.nt-triade-btns--full .nt-triade-btn {
  flex: 1;
  justify-content: center;
  border-radius: 0;
  border-right-width: 0;
}
.nt-triade-btns--full .nt-triade-btn:first-child {
  border-radius: 100px 0 0 100px;
}
.nt-triade-btns--full .nt-triade-btn:last-child {
  border-radius: 0 100px 100px 0;
  border-right-width: 1px;
}

.nt-triade-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #2D333B;
  background: rgba(15, 18, 25, 0.6);
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-triade-btn:hover {
  color: #FFFFFF;
  border-color: rgba(139, 148, 158, 0.4);
}
.nt-triade-btn__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-triade-btn--importante .nt-triade-btn__dot {
  background: #0EA5E9;
}
.nt-triade-btn--importante.is-active {
  background: #0EA5E9;
  border-color: #0EA5E9;
  color: #fff;
}
.nt-triade-btn--urgente .nt-triade-btn__dot {
  background: #EF4444;
}
.nt-triade-btn--urgente.is-active {
  background: #EF4444;
  border-color: #EF4444;
  color: #fff;
}
.nt-triade-btn--circunstancial .nt-triade-btn__dot {
  background: #F97316;
}
.nt-triade-btn--circunstancial.is-active {
  background: #F97316;
  border-color: #F97316;
  color: #fff;
}
.nt-triade-btn--undefined .nt-triade-btn__dot {
  background: #8B949E;
}
.nt-triade-btn--undefined.is-active {
  background: rgba(139, 148, 158, 0.15);
  border-color: rgba(139, 148, 158, 0.4);
  color: #8B949E;
}

.nt-rich-editor {
  border-radius: 10px;
  transition: border-color box-shadow 0.25s ease;
}
.nt-rich-editor:focus-within .ql-toolbar.ql-snow {
  border-color: rgba(0, 136, 204, 0.5);
}
.nt-rich-editor:focus-within .ql-container.ql-snow {
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.08);
}
.nt-rich-editor__toolbar-actions {
  display: flex;
  gap: 8px;
}
.nt-rich-editor.ql-toolbar.ql-snow {
  border: 1px solid #2D333B;
  border-bottom: 1px solid #2D333B;
  background: rgba(15, 18, 25, 0.5);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
}
.nt-rich-editor.ql-toolbar.ql-snow button {
  color: #8B949E;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-rich-editor.ql-toolbar.ql-snow button:hover {
  color: #FFFFFF;
  background: rgba(45, 51, 59, 0.8);
}
.nt-rich-editor.ql-toolbar.ql-snow button.ql-active {
  color: #0EA5E9;
  background: rgba(0, 136, 204, 0.15);
}
.nt-rich-editor.ql-toolbar.ql-snow button .ql-stroke {
  stroke: currentColor;
}
.nt-rich-editor.ql-toolbar.ql-snow button .ql-fill {
  fill: currentColor;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker {
  color: #8B949E;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid #2D333B;
  border-radius: 6px;
  background: rgba(11, 14, 20, 0.6);
  color: #8B949E;
  font-size: 12px;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-label::before {
  color: #8B949E;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-label .ql-stroke {
  stroke: #8B949E;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-options {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-options .ql-picker-item {
  color: #FFFFFF;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-options .ql-picker-item:hover {
  background: rgba(0, 136, 204, 0.1);
  color: #0EA5E9;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-picker-options .ql-picker-item.ql-selected {
  color: #0EA5E9;
}
.nt-rich-editor.ql-toolbar.ql-snow .ql-formats {
  margin-right: 8px;
}
.nt-rich-editor.ql-container.ql-snow {
  border: 1px solid #2D333B;
  border-top: 1px solid #2D333B !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  height: auto;
  min-height: 150px;
  margin-top: 1em;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nt-rich-editor.ql-container.ql-snow p {
  color: #9d9d9d;
}
.nt-rich-editor.ql-container.ql-snow .ql-blank::before {
  color: rgba(139, 148, 158, 0.5);
  font-style: normal;
}
.nt-rich-editor.ql-editor {
  min-height: 100px;
  max-height: 160px;
  overflow-y: auto;
  color: #FFFFFF;
  background: rgba(11, 14, 20, 0.4);
  border-radius: 0 0 10px 10px;
  line-height: 1.6;
  padding: 12px 14px;
}
.nt-rich-editor.ql-editor::-webkit-scrollbar {
  width: 6px;
}
.nt-rich-editor.ql-editor::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-rich-editor.ql-editor::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-rich-editor.ql-editor.ql-blank::before {
  color: rgba(139, 148, 158, 0.5);
  font-style: normal;
}
.nt-rich-editor.ql-editor p {
  margin: 0 0 4px;
}
.nt-rich-editor.ql-editor p:last-child {
  margin-bottom: 0;
}

.ql-toolbar.ql-snow {
  border: 1px solid #616a77 !important;
  margin-top: 1em;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.nt-expandable-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #2D333B;
  background: rgba(15, 18, 25, 0.6);
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-expandable-trigger:hover {
  color: #FFFFFF;
  border-color: rgba(139, 148, 158, 0.4);
}
.nt-expandable-trigger[aria-expanded=true] {
  color: #0EA5E9;
  border-color: rgba(0, 136, 204, 0.4);
  background: rgba(0, 136, 204, 0.08);
}
.nt-expandable-trigger--pill {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
}

.nt-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nt-checklist__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nt-checklist__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nt-checklist__item:hover .nt-checklist__item-remove {
  opacity: 1;
}
.nt-checklist__item-check {
  width: 16px;
  height: 16px;
  border: 2px solid #2D333B;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-checklist__item-check.is-done {
  background: #22C55E;
  border-color: #22C55E;
}
.nt-checklist__item-text {
  flex: 1;
  font-size: 13px;
  color: #FFFFFF;
}
.nt-checklist__item-text.is-done {
  text-decoration: line-through;
  color: #8B949E;
}
.nt-checklist__item-remove {
  background: none;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 2px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-checklist__item-remove:hover {
  color: #EF4444;
}
.nt-checklist__add {
  display: flex;
  gap: 8px;
}
.nt-checklist__input {
  flex: 1;
}
.nt-checklist__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #2D333B;
  background: rgba(0, 136, 204, 0.1);
  color: #0088CC;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.nt-checklist__add-btn:hover {
  background: rgba(0, 136, 204, 0.2);
  border-color: rgba(0, 136, 204, 0.4);
}

.nt-attachments {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-attachments__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nt-attachments__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(45, 51, 59, 0.2);
  border-radius: 6px;
  font-size: 12px;
}
.nt-attachments__item-name {
  flex: 1;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nt-attachments__item-name[href] {
  color: #0EA5E9;
  text-decoration: none;
}
.nt-attachments__item-name[href]:hover {
  text-decoration: underline;
}
.nt-attachments__item-size {
  color: #8B949E;
  flex-shrink: 0;
}
.nt-attachments__item-remove {
  background: none;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-attachments__item-remove:hover {
  color: #EF4444;
}
.nt-attachments__item--pending {
  border: 1px dashed rgba(45, 51, 59, 0.6);
  background: rgba(0, 136, 204, 0.04);
}
.nt-attachments__item-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8B949E;
  background: rgba(45, 51, 59, 0.4);
  border-radius: 100px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.nt-attachments__add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px dashed #2D333B;
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-attachments__add:hover {
  border-color: #0088CC;
  color: #0EA5E9;
}

.nt-modal__footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nt-modal--dump .nt-modal__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 28px;
}
.nt-modal--dump .nt-modal__field {
  margin-bottom: 0;
}
.nt-modal--dump .nt-modal__footer-main {
  grid-template-columns: 1fr;
}

.nt-modal__header-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #8B949E;
  text-decoration: none;
  transition: color 0.25s ease;
}
.nt-modal__header-link:hover {
  color: #0EA5E9;
}

.nt-dump-modal__saved-hint {
  font-size: 12px;
  color: #22C55E;
  font-weight: 600;
  min-height: 16px;
}

.nt-recurrence-trigger-btn {
  text-align: left;
  background: rgba(11, 14, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 16px;
  padding-left: 38px;
  height: 40px;
  transition: border-color box-shadow 0.25s ease;
}
.nt-recurrence-trigger-btn:hover {
  border-color: rgba(0, 136, 204, 0.5);
}
.nt-recurrence-trigger-btn svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.nt-recurrence-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px;
}

#nt-recurrence-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nt-recurrence-freq-selector {
  display: flex;
  background: rgba(11, 14, 20, 0.5);
  border: 1px solid #2D333B;
  border-radius: 6px;
  padding: 6px;
  width: 100%;
  gap: 10px;
}

.nt-recurrence-freq-btn {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  color: #8B949E;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.nt-recurrence-freq-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(45, 51, 59, 0.4);
}
.nt-recurrence-freq-btn.is-active {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #0EA5E9;
  box-shadow: 0 0 6px rgba(14, 165, 233, 0.08);
}

.nt-recurrence-days-btns {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.nt-recurrence-day-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #2D333B;
  background: rgba(11, 14, 20, 0.4);
  color: #8B949E;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nt-recurrence-day-btn:hover {
  border-color: rgba(14, 165, 233, 0.5);
  color: #FFFFFF;
}
.nt-recurrence-day-btn.is-active {
  background: rgba(14, 165, 233, 0.2);
  border-color: #0EA5E9;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.35);
}

.nt-recurrence-interval-control {
  display: flex;
  align-items: center;
  background: rgba(11, 14, 20, 0.4);
  border: 1px solid #2D333B;
  border-radius: 6px;
  height: 32px;
  width: 100%;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.nt-recurrence-interval-control:focus-within {
  border-color: rgba(14, 165, 233, 0.5);
}

.nt-recurrence-interval-btn {
  width: 32px;
  height: 100%;
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nt-recurrence-interval-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}
.nt-recurrence-interval-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

.nt-recurrence-interval-input {
  width: 40px;
  height: 100%;
  border: none !important;
  background: transparent !important;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 0;
  box-shadow: none !important;
  outline: none !important;
  -moz-appearance: textfield;
}
.nt-recurrence-interval-input::-webkit-outer-spin-button, .nt-recurrence-interval-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nt-recurrence-unit-label {
  font-size: 13px;
  color: #8B949E;
  padding-left: 12px;
  margin-left: auto;
  margin-right: 12px;
  border-left: 1px solid #2D333B;
  height: 16px;
  display: flex;
  align-items: center;
}

.nt-recurrence-end-date-selector {
  position: relative;
  width: 100%;
}

.nt-recurrence-end-date {
  width: 100%;
  height: 32px;
  padding: 6px 12px;
  padding-right: 32px;
  background: rgba(11, 14, 20, 0.4);
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nt-recurrence-end-date:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.5);
}
.nt-recurrence-end-date:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nt-recurrence-end-date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B949E;
  pointer-events: none;
  opacity: 0.7;
}

.nt-recurrence-end-group-list {
  display: flex;
  flex-direction: column;
  border: 1px solid #2D333B;
  border-radius: 6px;
  background: rgba(11, 14, 20, 0.4);
  overflow: hidden;
}

.nt-recurrence-end-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #2D333B;
}
.nt-recurrence-end-option-row:last-child {
  border-bottom: none;
}
.nt-recurrence-end-option-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.nt-recurrence-end-option-row.is-active {
  background: rgba(14, 165, 233, 0.04);
}
.nt-recurrence-end-option-row.is-active .nt-recurrence-radio-label {
  color: #FFFFFF;
  font-weight: 600;
}
.nt-recurrence-end-option-row.is-active .nt-recurrence-end-chevron {
  color: #0EA5E9;
  opacity: 0.9;
}
.nt-recurrence-end-option-row input[type=radio] {
  display: none;
}

.nt-recurrence-end-option-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.nt-recurrence-radio-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #2D333B;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: rgba(11, 14, 20, 0.6);
  transition: all 0.2s ease;
}
input[type=radio]:checked + .nt-recurrence-radio-circle {
  border-color: #0EA5E9;
  background: rgba(14, 165, 233, 0.1);
}
input[type=radio]:checked + .nt-recurrence-radio-circle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0EA5E9;
  box-shadow: 0 0 6px #0EA5E9;
}

.nt-recurrence-radio-label {
  font-size: 13px;
  color: #8B949E;
  transition: color 0.2s ease;
}

.nt-recurrence-radio-sublabel {
  font-size: 13px;
  color: #8B949E;
  margin-left: 4px;
}

.nt-recurrence-occurrences-control {
  display: inline-flex;
  align-items: center;
  background: rgba(11, 14, 20, 0.4);
  border: 1px solid #2D333B;
  border-radius: 4px;
  height: 28px;
  margin: 0 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.nt-recurrence-occurrences-control:focus-within {
  border-color: rgba(14, 165, 233, 0.5);
}
.nt-recurrence-occurrences-control.is-disabled {
  opacity: 0.45;
}

.nt-recurrence-occurrences-btn {
  width: 28px;
  height: 100%;
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}
.nt-recurrence-occurrences-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.nt-recurrence-end-occurrences-input {
  width: 32px;
  height: 100%;
  border: none !important;
  background: transparent !important;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin: 0 !important;
  padding: 0;
  box-shadow: none !important;
  outline: none !important;
  -moz-appearance: textfield;
}
.nt-recurrence-end-occurrences-input:disabled {
  color: #8B949E;
}
.nt-recurrence-end-occurrences-input::-webkit-outer-spin-button, .nt-recurrence-end-occurrences-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nt-recurrence-end-chevron {
  color: #8B949E;
  opacity: 0.4;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nt-recurrence-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  border-top: 1px solid #2D333B;
  padding-top: 16px;
}

.nt-recurrence-btn {
  width: 100%;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nt-recurrence-btn--save {
  background: linear-gradient(135deg, #0EA5E9 0%, rgb(11.6874493927, 137.7449392713, 194.5125506073) 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}
.nt-recurrence-btn--save:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
  background: linear-gradient(135deg, rgb(26.1506072874, 174.4607287449, 241.2493927126) 0%, rgb(12.8437246964, 151.3724696356, 213.7562753036) 100%);
}
.nt-recurrence-btn--save:active {
  transform: translateY(0);
}
.nt-recurrence-btn--remove {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
}
.nt-recurrence-btn--remove:hover {
  background: rgba(239, 68, 68, 0.06);
  border-color: #EF4444;
  color: #EF4444;
}

@media screen and (max-width: 767px) {
  body {
    height: auto;
    overflow: auto;
  }
  .nt-modal {
    width: calc(100% - 32px);
    margin: 5%;
  }
  .nt-modal--reminder {
    margin-top: -30%;
  }
  .nt-modal__row {
    display: flex;
    flex-direction: column;
  }
  .nt-triade-btns--full {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nt-triade-btns--full .nt-triade-btn {
    border-radius: 100px;
    border-right-width: 1px;
    justify-content: center;
    padding: 12px 8px;
    flex: 1;
    min-width: calc(50% - 4px);
  }
  .nt-triade-btns--full .nt-triade-btn:first-child,
  .nt-triade-btns--full .nt-triade-btn:last-child {
    border-radius: 100px;
  }
  .nt-header__notifications-dropdown {
    display: flex;
    right: 50%;
    transform: translateX(50%);
  }
}
.nt-datepicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nt-datepicker__label {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-datepicker__label:hover {
  background: #161B22;
  color: #FFFFFF;
}
.nt-datepicker__popup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 272px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 16px;
  z-index: 1010;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nt-datepicker__popup {
  width: 272px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nt-dp-input {
  width: 100%;
  background: #0F1219;
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 13px;
  padding: 8px 36px 8px 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp-input:hover {
  border-color: #8B949E;
}
.nt-dp-input:focus {
  outline: none;
  border-color: #0088CC;
}
.nt-dp-input__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.nt-dp-input__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B949E;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nt-dp__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.nt-dp__nav-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-dp__nav-btn:hover {
  background: #0F1219;
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-dp__month-year {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nt-dp__month-btn, .nt-dp__year-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-dp__month-btn:hover, .nt-dp__year-btn:hover {
  background: #0F1219;
}
.nt-dp__year-range {
  font-size: 13px;
  color: #8B949E;
}
.nt-dp__range-hint {
  font-size: 11px;
  color: #8B949E;
  text-align: center;
  margin: -8px 0 10px;
  letter-spacing: 0.02em;
}
.nt-dp__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.nt-dp__wd {
  text-align: center;
  font-size: 11px;
  color: #8B949E;
  font-weight: 500;
  padding: 4px 0;
  letter-spacing: 0.04em;
}
.nt-dp__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.nt-dp__day {
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  padding: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  transition: all 0.25s ease;
}
.nt-dp__day:hover:not(:disabled):not(.nt-dp__day--selecionado):not(.nt-dp__day--range-start):not(.nt-dp__day--range-end) {
  background: #0F1219;
}
.nt-dp__day--outro-mes, .nt-dp__day.is-disabled {
  color: #2D333B;
  cursor: default;
}
.nt-dp__day--hoje:not(.nt-dp__day--selecionado):not(.nt-dp__day--range-start):not(.nt-dp__day--range-end) {
  color: #0088CC;
  font-weight: 500;
}
.nt-dp__day--hoje:not(.nt-dp__day--selecionado):not(.nt-dp__day--range-start):not(.nt-dp__day--range-end)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0088CC;
  margin: 1px auto 0;
}
.nt-dp__day--selecionado {
  background: #0088CC;
  color: #fff;
  font-weight: 500;
}
.nt-dp__day--range-start, .nt-dp__day--range-end {
  background: #0088CC;
  color: #fff;
  font-weight: 500;
}
.nt-dp__day--range-start {
  border-radius: 6px 0 0 6px;
}
.nt-dp__day--range-end {
  border-radius: 0 6px 6px 0;
}
.nt-dp__day--range-between {
  background: rgba(0, 136, 204, 0.15);
  color: #FFFFFF;
  border-radius: 0;
}
.nt-dp__months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.nt-dp__month-item {
  padding: 8px 4px;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__month-item:hover {
  background: #0F1219;
  border-color: #2D333B;
}
.nt-dp__month-item--ativo {
  background: #0F1219;
  border-color: #0088CC;
  color: #0088CC;
}
.nt-dp__years-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.nt-dp__year-item {
  padding: 7px 4px;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__year-item:hover {
  background: #0F1219;
  border-color: #2D333B;
}
.nt-dp__year-item--ativo {
  background: #0F1219;
  border-color: #0088CC;
  color: #0088CC;
}
.nt-dp__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #2D333B;
}
.nt-dp__hoje-btn {
  background: transparent;
  border: 1px solid #2D333B;
  color: #0088CC;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__hoje-btn:hover {
  background: #0F1219;
  border-color: #0088CC;
}
.nt-dp__data-atual {
  font-size: 12px;
  color: #8B949E;
}
.nt-dp__header--time {
  margin-bottom: 12px;
  gap: 8px;
}
.nt-dp__back-btn {
  flex-shrink: 0;
}
.nt-dp__time-date-label {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nt-dp__time-wheel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  background: #0F1219;
  border-radius: 6px;
  border: 1px solid #2D333B;
  overflow: hidden;
  margin: 10px 0;
}
.nt-dp__time-wheel-col {
  flex: 1;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  padding: 60px 0;
  box-sizing: border-box;
  -ms-overflow-style: none; /* IE e Edge */
  scrollbar-width: none; /* Firefox */
  cursor: grab;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background-color 0.2s, border-color 0.2s;
}
.nt-dp__time-wheel-col::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}
.nt-dp__time-wheel-col.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.nt-dp__time-wheel-col.is-dragging .nt-dp__wheel-item {
  cursor: grabbing;
}
.nt-dp__time-wheel-col.is-active-column {
  background: rgba(0, 136, 204, 0.05);
  border-color: rgba(0, 136, 204, 0.2);
}
.nt-dp__wheel-item {
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  cursor: inherit;
  scroll-snap-align: center;
  transition: opacity 0.1s, transform 0.1s, color 0.1s;
  user-select: none;
}
.nt-dp__wheel-item.is-active {
  color: #0088CC;
  font-weight: 600;
}
.nt-dp__time-wheel-separator {
  font-size: 18px;
  font-weight: bold;
  color: #8B949E;
  padding: 0 10px;
  user-select: none;
}
.nt-dp__time-wheel-indicator {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  height: 30px;
  border-top: 1px solid rgba(0, 136, 204, 0.3);
  border-bottom: 1px solid rgba(0, 136, 204, 0.3);
  pointer-events: none;
  background: rgba(0, 136, 204, 0.03);
  border-radius: 4px;
}
.nt-dp__time-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nt-dp__time-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.nt-dp__time-toggle-btn {
  background: transparent;
  border: none;
  color: #0088CC;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nt-dp__time-toggle-btn:hover {
  background: rgba(0, 136, 204, 0.1);
}
.nt-dp__time-toggle-btn svg {
  flex-shrink: 0;
}
.nt-dp__time-section-label {
  font-size: 11px;
  font-weight: 500;
  color: #8B949E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.nt-dp__time-section-label svg {
  flex-shrink: 0;
}
.nt-dp__time-select-container {
  position: relative;
  margin: 10px 0;
}
.nt-dp__select-input-wrapper {
  position: relative;
  cursor: pointer;
}
.nt-dp__select-input {
  width: 100%;
  height: 38px;
  background: #0F1219;
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 0 30px;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nt-dp__select-input.is-editing {
  cursor: text;
  background: #161B22;
  border-color: #0088CC;
  box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.2);
  outline: none;
}
.nt-dp__select-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
  animation: nt-shake 0.3s ease-in-out;
}
.nt-dp__select-input-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8B949E;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.nt-dp__select-tip {
  font-size: 10px;
  color: #8B949E;
  margin: 4px 0 0;
  text-align: center;
}
.nt-dp__select-dropdown {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  max-height: 120px;
  overflow-y: auto;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  scrollbar-width: thin;
  scrollbar-color: #2D333B transparent;
}
.nt-dp__select-dropdown::-webkit-scrollbar {
  width: 6px;
}
.nt-dp__select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.nt-dp__select-dropdown::-webkit-scrollbar-thumb {
  background-color: #2D333B;
  border-radius: 3px;
}
.nt-dp__select-option {
  padding: 8px 12px;
  font-size: 13px;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.nt-dp__select-option:hover {
  background: #0F1219;
  color: #0088CC;
}
.nt-dp__select-option.is-selected {
  background: rgba(0, 136, 204, 0.1);
  color: #0088CC;
  font-weight: 600;
}
.nt-dp__select-option.is-disabled {
  color: #2D333B;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.nt-dp__confirm-btn {
  background: #0088CC;
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__confirm-btn:hover {
  background: rgb(0, 108.8, 163.2);
}

@keyframes nt-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}
.nt-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #18181b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nt-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nt-toast svg {
  flex-shrink: 0;
}
.nt-toast--success {
  border-left: 4px solid #10b981;
}
.nt-toast--success svg {
  color: #10b981;
}
.nt-toast--error {
  border-left: 4px solid #ef4444;
}
.nt-toast--error svg {
  color: #ef4444;
}
.nt-toast--warning {
  border-left: 4px solid #f59e0b;
}
.nt-toast--warning svg {
  color: #f59e0b;
}
.nt-toast--info {
  border-left: 4px solid #3b82f6;
}
.nt-toast--info svg {
  color: #3b82f6;
}

.nt-swal-popup {
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
  font-family: inherit !important;
}

.nt-swal-confirm {
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.nt-swal-cancel {
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.nt-sidebar-preload-mini #nt-sidebar {
  width: 64px;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__label,
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__nav-text,
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__section-title,
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__brand-name {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__brand {
  padding-inline: 0;
  gap: 0;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__brand img {
  width: 55px;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__nav {
  padding: 0 4px;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__nav-item {
  justify-content: center;
  padding: 0;
  gap: 0;
  min-height: 44px;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__toggle {
  left: 50px;
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__toggle-icon {
  transform: rotate(180deg);
}
.nt-sidebar-preload-mini #nt-sidebar .nt-sidebar__footer {
  padding: 12px 0;
  justify-content: center;
}

.nt-sidebar {
  width: 256px;
  background: #0F1219;
  border-right: 1px solid #2D333B;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: visible;
}
.nt-sidebar.is-transition-ready {
  transition: width 0.25s ease;
}
.nt-sidebar.is-transition-ready .nt-sidebar__toggle {
  transition: left 0.25s ease;
}
.nt-sidebar.is-transition-ready .nt-sidebar__brand-name,
.nt-sidebar.is-transition-ready .nt-sidebar__nav-text,
.nt-sidebar.is-transition-ready .nt-sidebar__section-title {
  transition: opacity width 0.25s ease;
}
.nt-sidebar.is-transition-ready .nt-sidebar__toggle-icon {
  transition: transform 0.25s ease;
}
.nt-sidebar__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  width: 100%;
}
.nt-sidebar.is-mini {
  width: 64px;
}
.nt-sidebar.is-mini .nt-sidebar__label,
.nt-sidebar.is-mini .nt-sidebar__nav-text,
.nt-sidebar.is-mini .nt-sidebar__section-title,
.nt-sidebar.is-mini .nt-sidebar__brand-name {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.nt-sidebar.is-mini .nt-sidebar__brand {
  padding-inline: 0;
  gap: 0;
}
.nt-sidebar.is-mini .nt-sidebar__brand img {
  width: 55px;
}
.nt-sidebar.is-mini .nt-sidebar__nav {
  padding: 0 4px;
}
.nt-sidebar.is-mini .nt-sidebar__nav-item {
  justify-content: center;
  padding: 0;
  gap: 0;
  min-height: 44px;
}
.nt-sidebar.is-mini .nt-sidebar__toggle {
  left: 50px;
}
.nt-sidebar.is-mini .nt-sidebar__toggle-icon {
  transform: rotate(180deg);
}
.nt-sidebar.is-mini .nt-sidebar__footer {
  padding: 12px 0;
  justify-content: center;
}
.nt-sidebar__brand {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nt-sidebar__brand-logo {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  font-style: italic;
}
.nt-sidebar__brand-logo img {
  width: 75px;
}
.nt-sidebar__brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nt-sidebar__toggle {
  position: absolute;
  top: 50px;
  left: 242px;
  width: 28px;
  height: 28px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #8B949E;
}
.nt-sidebar__toggle:hover {
  color: #FFFFFF;
}
.nt-sidebar__nav {
  flex: 1;
  padding: 0 16px;
  overflow-y: auto;
  margin-top: 16px;
}
.nt-sidebar__nav::-webkit-scrollbar {
  width: 6px;
}
.nt-sidebar__nav::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-sidebar__nav::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-sidebar__section {
  margin-bottom: 32px;
}
.nt-sidebar__section-title {
  font-size: 10px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 0 4px;
}
.nt-sidebar__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nt-sidebar__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #8B949E;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.nt-sidebar__nav-item:hover {
  background: #161B22;
  color: #FFFFFF;
}
.nt-sidebar__nav-item.is-active {
  background: rgba(0, 136, 204, 0.15);
  color: #0EA5E9;
}
.nt-sidebar__nav-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.nt-sidebar__footer {
  padding: 16px;
  border-top: 1px solid #2D333B;
}

.nt-sidebar-tooltip {
  position: fixed;
  transform: translateY(-50%) translateX(-4px);
  background: #161B22;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #2D333B;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 9999;
}
.nt-sidebar-tooltip.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.nt-header {
  height: 64px;
  border-bottom: 1px solid #2D333B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  flex-shrink: 0;
}
.nt-header__date-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.nt-header__date-btn {
  padding: 4px;
  background: transparent;
  border: none;
  color: #8B949E;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-header__date-btn:hover {
  background: #161B22;
  color: #FFFFFF;
}
.nt-header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nt-header__action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nt-header__icon-btn {
  padding: 8px;
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
}
.nt-header__icon-btn:hover {
  color: #FFFFFF;
}
.nt-header__notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  background: #EF4444;
  border-radius: 50%;
  border: 1.5px solid #0F1219;
}
.nt-header__profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 16px;
  border-left: 1px solid #2D333B;
}
.nt-header__profile-info {
  text-align: right;
}
.nt-header__profile-name {
  font-size: 14px;
  font-weight: 600;
}
.nt-header__profile-plan {
  font-size: 10px;
  color: #8B949E;
}
.nt-header__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0088CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.25);
}
.nt-header__notifications-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: -10px;
  width: 320px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
}
.nt-header__notifications-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2D333B;
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.nt-header__notifications-dropdown-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}
.nt-header__notifications-dropdown-header button {
  background: none;
  border: none;
  cursor: pointer;
  color: #8B949E;
  font-size: 16px;
  transition: all 0.25s ease;
}
.nt-header__notifications-dropdown-header button:hover {
  color: #EF4444;
}
.nt-header__notifications-dropdown-list {
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-header__notifications-dropdown-list .empty-state {
  font-size: 13px;
  color: #8B949E;
  text-align: center;
  padding: 12px 0;
}
.nt-header__notifications-dropdown-item {
  padding: 12px;
  background: #0F1219;
  border: 1px solid #2D333B;
  border-radius: 6px;
  border-left: 3px solid #0EA5E9;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.nt-header__notifications-dropdown-item strong {
  font-size: 13px;
  color: #FFFFFF;
  margin-right: 20px;
}
.nt-header__notifications-dropdown-item span {
  font-size: 11px;
  color: #8B949E;
}
.nt-header__notifications-dropdown-item .dismiss-btn {
  position: absolute;
  right: 8px;
  top: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #8B949E;
  font-size: 16px;
  line-height: 1;
  transition: all 0.25s ease;
}
.nt-header__notifications-dropdown-item .dismiss-btn:hover {
  color: #EF4444;
}

.nt-datepicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nt-datepicker__label {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-datepicker__label:hover {
  background: #161B22;
  color: #FFFFFF;
}
.nt-datepicker__popup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 272px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 16px;
  z-index: 1010;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nt-dp__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.nt-dp__nav-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-dp__nav-btn:hover {
  background: #0F1219;
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-dp__month-year {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nt-dp__month-btn, .nt-dp__year-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-dp__month-btn:hover, .nt-dp__year-btn:hover {
  background: #0F1219;
}
.nt-dp__year-range {
  font-size: 13px;
  color: #8B949E;
}
.nt-dp__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.nt-dp__wd {
  text-align: center;
  font-size: 11px;
  color: #8B949E;
  font-weight: 500;
  padding: 4px 0;
  letter-spacing: 0.04em;
}
.nt-dp__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.nt-dp__day {
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  padding: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  transition: all 0.25s ease;
}
.nt-dp__day:hover:not(:disabled):not(.nt-dp__day--selecionado) {
  background: #0F1219;
  color: #FFFFFF;
}
.nt-dp__day--outro-mes {
  color: #2D333B;
  cursor: default;
}
.nt-dp__day--hoje:not(.nt-dp__day--selecionado) {
  color: #0088CC;
  font-weight: 500;
}
.nt-dp__day--hoje:not(.nt-dp__day--selecionado)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0088CC;
  margin: 1px auto 0;
}
.nt-dp__day--selecionado {
  background: #0088CC;
  color: #fff;
  font-weight: 500;
}
.nt-dp__day--selecionado:hover {
  background: #0088CC;
}
.nt-dp__months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.nt-dp__month-item {
  padding: 8px 4px;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__month-item:hover {
  background: #0F1219;
  border-color: #2D333B;
}
.nt-dp__month-item--ativo {
  background: #0F1219;
  border-color: #0088CC;
  color: #0088CC;
}
.nt-dp__years-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.nt-dp__year-item {
  padding: 7px 4px;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__year-item:hover {
  background: #0F1219;
  border-color: #2D333B;
}
.nt-dp__year-item--ativo {
  background: #0F1219;
  border-color: #0088CC;
  color: #0088CC;
}
.nt-dp__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #2D333B;
}
.nt-dp__hoje-btn {
  background: transparent;
  border: 1px solid #2D333B;
  color: #0088CC;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-dp__hoje-btn:hover {
  background: #0F1219;
  border-color: #0088CC;
}
.nt-dp__data-atual {
  font-size: 12px;
  color: #8B949E;
}

.nt-greeting {
  margin-bottom: 24px;
}
.nt-greeting__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.nt-greeting__title span {
  color: #0EA5E9;
}
.nt-greeting__subtitle {
  font-size: 13px;
  color: #8B949E;
}
.nt-greeting__streak {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22C55E;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 12px;
}

.nt-right-container {
  display: flex;
  margin-right: -32px;
  margin-top: -32px;
  margin-bottom: -32px;
}

.nt-sidebar-right {
  width: 320px;
  background: #0F1219;
  border-left: 1px solid #2D333B;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.nt-sidebar-right__header {
  flex-shrink: 0;
}
.nt-sidebar-right__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
  min-height: 44px;
}
.nt-sidebar-right__topbar--hidden {
  display: none;
}
.nt-sidebar-right__topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nt-sidebar-right__topbar-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
.nt-sidebar-right__topbar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #8B949E;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.nt-sidebar-right__topbar-link:hover {
  color: #0EA5E9;
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.2);
}
.nt-sidebar-right__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: calc(100% - 32px);
  margin: 0 16px 4px;
  margin-bottom: 16px;
  padding: 9px 12px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.nt-sidebar-right__view-all svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.nt-sidebar-right__view-all:hover {
  color: #0EA5E9;
  border-color: rgba(0, 136, 204, 0.3);
  background: rgba(0, 136, 204, 0.05);
}
.nt-sidebar-right__view-all:hover svg {
  transform: translateX(3px);
}
.nt-sidebar-right__tabs {
  display: flex;
  border-bottom: 1px solid #2D333B;
  padding: 0 8px;
}
.nt-sidebar-right__tab {
  flex: 1;
  padding: 14px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #8B949E;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: -1px;
  white-space: nowrap;
}
.nt-sidebar-right__tab:hover {
  color: #FFFFFF;
}
.nt-sidebar-right__tab.is-active {
  color: #0EA5E9;
  border-bottom-color: #0EA5E9;
}
.nt-sidebar-right__panel {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.nt-sidebar-right__panel.is-active {
  display: flex;
}
.nt-sidebar-right__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nt-sidebar-right__body::-webkit-scrollbar {
  width: 6px;
}
.nt-sidebar-right__body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-sidebar-right__body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-sidebar-right__new-btn {
  width: 100%;
  padding: 10px;
  background: #0088CC;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-sidebar-right__new-btn:hover {
  background: rgb(0, 156.4, 234.6);
}
.nt-sidebar-right__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-sidebar-right__group-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 2px;
}
.nt-sidebar-right__group-label--past {
  color: #8B949E;
}
.nt-sidebar-right__group-label--now {
  color: #EF4444;
}
.nt-sidebar-right__group-label--next {
  color: #F97316;
}
.nt-sidebar-right__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  flex-shrink: 0;
  animation: nt-pulse 1.5s ease infinite;
}
.nt-sidebar-right__event {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nt-sidebar-right__event--past {
  opacity: 0.55;
}
.nt-sidebar-right__event--now {
  border-left: 3px solid #EF4444;
  border-radius: 0 10px 10px 0;
  opacity: 1;
}
.nt-sidebar-right__event--next {
  border-left: 3px solid #F97316;
  border-radius: 0 10px 10px 0;
}
.nt-sidebar-right__event-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}
.nt-sidebar-right__event-time {
  font-size: 12px;
  color: #0EA5E9;
  margin-top: 3px;
}
.nt-sidebar-right__event-tag {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}
.nt-sidebar-right__event-tag--past {
  background: rgba(139, 148, 158, 0.08);
  color: #8B949E;
}
.nt-sidebar-right__event-tag--now {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.nt-sidebar-right__event-tag--next {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.nt-sidebar-right__join-btn {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.nt-sidebar-right__join-btn svg {
  color: #0EA5E9;
}
.nt-sidebar-right__join-btn:hover {
  background: #2D333B;
  border-color: rgb(62.6538461538, 71.0076923077, 82.1461538462);
}
.nt-sidebar-right__countdown {
  padding: 16px;
  background: rgba(0, 136, 204, 0.08);
  border-top: 1px solid #2D333B;
  flex-shrink: 0;
  min-height: 140px;
  align-content: center;
}
.nt-sidebar-right__countdown-label {
  margin-bottom: 20px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: none;
}
.nt-sidebar-right__countdown-label:not(:empty) {
  display: block;
}
.nt-sidebar-right__countdown-time {
  font-size: 32px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}
.nt-sidebar-right__countdown-time.is-negative {
  color: #EF4444;
}
.nt-sidebar-right .nt-activity-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nt-sidebar-right .nt-activity-controls__pause {
  width: 44px;
  height: 44px;
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0EA5E9;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.nt-sidebar-right .nt-activity-controls__pause:hover {
  background: rgba(0, 136, 204, 0.25);
}
.nt-sidebar-right .nt-activity-controls__complete {
  width: 44px;
  height: 44px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #22C55E;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.nt-sidebar-right .nt-activity-controls__complete:hover {
  background: rgba(34, 197, 94, 0.28);
}
.nt-sidebar-right .nt-activity-idle {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nt-sidebar-right .nt-activity-idle__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0EA5E9;
}
.nt-sidebar-right .nt-activity-idle__title {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 3px;
}
.nt-sidebar-right .nt-activity-idle__subtitle {
  font-size: 11px;
  color: #8B949E;
  line-height: 1.5;
}
.nt-sidebar-right .nt-activity-running {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nt-modal--appointments-all {
  max-width: 540px;
}
.nt-modal--appointments-all .nt-modal__header--task {
  align-items: flex-start;
}

.nt-appointments-all__date {
  font-size: 11px;
  color: #8B949E;
  margin-top: 2px;
  text-transform: capitalize;
}
.nt-appointments-all__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nt-appointments-all__page-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #2D333B;
  background: transparent;
  color: #8B949E;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.nt-appointments-all__page-link:hover {
  color: #0EA5E9;
  border-color: rgba(0, 136, 204, 0.3);
  background: rgba(0, 136, 204, 0.06);
}
.nt-appointments-all__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 0;
  overflow-y: auto;
}
.nt-appointments-all__body::-webkit-scrollbar {
  width: 6px;
}
.nt-appointments-all__body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-appointments-all__body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-appointments-all__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 0;
  color: #8B949E;
  font-size: 13px;
}
.nt-appointments-all__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #2D333B;
  border-top-color: #0EA5E9;
  border-radius: 50%;
  animation: nt-spin 0.7s linear infinite;
}
.nt-appointments-all__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 0;
  color: #8B949E;
  text-align: center;
}
.nt-appointments-all__empty .nt-empty-state__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.08);
  border: 1px solid rgba(0, 136, 204, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0EA5E9;
}
.nt-appointments-all__timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nt-appointments-all__footer {
  padding: 16px 24px;
  border-top: 1px solid #2D333B;
}
.nt-appointments-all__footer .nt-modal__save-btn {
  width: 100%;
}

.nt-appt-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nt-appt-section__header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nt-appt-section__header--past {
  color: #8B949E;
}
.nt-appt-section__header--now {
  color: #EF4444;
}
.nt-appt-section__header--next {
  color: #F97316;
}
.nt-appt-section__count {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 100px;
  background: rgba(45, 51, 59, 0.5);
  color: #8B949E;
}

.nt-appt-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
}
.nt-appt-card--past {
  opacity: 0.55;
}
.nt-appt-card--now {
  border-left: 3px solid #EF4444;
  border-radius: 0 10px 10px 0;
}
.nt-appt-card--next {
  border-left: 3px solid #F97316;
  border-radius: 0 10px 10px 0;
}
.nt-appt-card__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 2px;
}
.nt-appt-card__marker-time {
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nt-appt-card__marker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  animation: nt-pulse 1.5s ease infinite;
}
.nt-appt-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nt-appt-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}
.nt-appt-card__time {
  font-size: 12px;
  color: #0EA5E9;
  margin-top: 3px;
}
.nt-appt-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #8B949E;
  margin-top: 5px;
}
.nt-appt-card__location svg {
  flex-shrink: 0;
}
.nt-appt-card__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
}
.nt-appt-card__tag--past {
  background: rgba(139, 148, 158, 0.08);
  color: #8B949E;
}
.nt-appt-card__tag--now, .nt-appt-card__tag--next {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.nt-appt-card__edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 6px 10px;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-appt-card__edit-btn svg {
  color: #0EA5E9;
}
.nt-appt-card__edit-btn:hover {
  color: #FFFFFF;
  background: #2D333B;
}

@keyframes nt-spin {
  to {
    transform: rotate(360deg);
  }
}
.nt-notes {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 12px;
  overflow: hidden;
}
.nt-notes__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.nt-notes__saved {
  font-size: 11px;
  color: #8B949E;
  transition: opacity 0.25s ease;
}
.nt-notes__saved.is-saving {
  color: #0EA5E9;
}
.nt-notes__checklist-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #8B949E;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-notes__checklist-btn:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-notes__textarea {
  flex: 1;
  background: rgba(11, 14, 20, 0.5);
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  padding: 12px;
  resize: none;
  min-height: 120px;
  transition: border-color 0.25s ease;
}
.nt-notes__textarea::-webkit-scrollbar {
  width: 6px;
}
.nt-notes__textarea::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-notes__textarea::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-notes__textarea::placeholder {
  color: rgba(139, 148, 158, 0.5);
}
.nt-notes__textarea:focus {
  outline: none;
  border-color: rgba(0, 136, 204, 0.4);
}
.nt-notes__checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.nt-notes__checklist::-webkit-scrollbar {
  width: 6px;
}
.nt-notes__checklist::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-notes__checklist::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-notes__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(22, 27, 34, 0.5);
  border-radius: 6px;
}
.nt-notes__item input[type=checkbox] {
  accent-color: #22C55E;
  cursor: pointer;
  flex-shrink: 0;
}
.nt-notes__item-text {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  outline: none;
}
.nt-notes__item-text::placeholder {
  color: rgba(139, 148, 158, 0.4);
}
.nt-notes__item-text.is-done {
  text-decoration: line-through;
  color: #8B949E;
}
.nt-notes__item-remove {
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-notes__item-remove:hover {
  color: #EF4444;
}

.nt-reminders {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}
.nt-reminders::-webkit-scrollbar {
  width: 6px;
}
.nt-reminders::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-reminders::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-reminders__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-reminders__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-left: 3px solid #0EA5E9;
  border-radius: 0 10px 10px 0;
  transition: opacity 0.25s ease;
}
.nt-reminders__item--due {
  border-left-color: #EF4444;
}
.nt-reminders__item--dismissed {
  opacity: 0.35;
  border-left-color: #2D333B;
}
.nt-reminders__item-info {
  flex: 1;
}
.nt-reminders__item-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.nt-reminders__item-time {
  font-size: 11px;
  color: #8B949E;
}
.nt-reminders__item-time--due {
  color: #EF4444;
}
.nt-reminders__item-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nt-reminders__item-edit, .nt-reminders__item-dismiss {
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-reminders__item-edit:hover, .nt-reminders__item-dismiss:hover {
  color: #FFFFFF;
  background: rgba(45, 51, 59, 0.5);
}
.nt-reminders__item-edit:hover {
  color: #0EA5E9;
}
.nt-reminders__item-dismiss:hover {
  color: #EF4444;
}

.nt-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-left: 4px solid #0EA5E9;
  border-radius: 10px;
  padding: 14px 40px 14px 16px;
  max-width: 320px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  transition: transform 0.25s ease;
}
.nt-toast.is-visible {
  transform: translateX(0);
}
.nt-toast--reminder {
  border-left-color: #F97316;
}
.nt-toast__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.nt-toast__body {
  font-size: 12px;
  color: #8B949E;
}
.nt-toast__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.nt-toast__close:hover {
  color: #FFFFFF;
}

.nt-progress-card {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.nt-progress-card__ring {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.nt-progress-card__ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.nt-progress-card__info {
  flex: 1;
}
.nt-progress-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.nt-progress-card__subtitle {
  font-size: 13px;
  color: #8B949E;
  line-height: 1.5;
}
.nt-progress-card__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}
.nt-progress-card__stat {
  padding-left: 20px;
  border-left: 1px solid #2D333B;
}
.nt-progress-card__stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8B949E;
  margin-bottom: 4px;
}
.nt-progress-card__stat-value {
  font-size: 22px;
  font-weight: 700;
}

@keyframes nt-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}
.nt-mobile-appointments {
  display: none;
}

.nt-header__open {
  display: none;
}

.nt-sidebar__close {
  display: none;
}

@media screen and (max-width: 767px) {
  .nt-content.myDay {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 15px;
  }
  .nt-content.myDay .nt-main-container {
    display: contents;
  }
  .nt-greeting {
    order: 0;
    margin-top: 15px;
  }
  .nt-command-bar {
    order: 1;
  }
  .nt-right-container {
    order: 2;
  }
  .nt-progress-card {
    order: 4;
  }
  .nt-header {
    padding: 15px;
    height: auto;
    flex-wrap: wrap;
    gap: 5px;
  }
  .nt-header .nt-header__open {
    display: block;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 22px;
    margin-right: 8px;
  }
  .nt-header__actions {
    gap: 8px;
    transform: scale(0.9);
    padding-right: 20px;
  }
  .nt-header__date-nav {
    order: 10;
    width: 100%;
    padding: 12px 0px 8px;
    margin-top: 8px;
    margin-bottom: -8px;
    border-top: 1px solid #2D333B;
    font-size: 14px;
  }
  .nt-header__profile {
    border-left: none;
    padding-left: 0;
    gap: 5px;
    flex-direction: row-reverse;
  }
  .nt-header__profile-info {
    text-align: left;
  }
  .nt-header__avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .nt-sidebar {
    position: fixed;
    height: 100%;
    z-index: 200;
    transform: translateX(-100%);
  }
  .nt-sidebar.is-open {
    transform: translateX(0);
  }
  .nt-sidebar__close {
    position: absolute;
    display: block;
    color: white;
    border: none;
    background: transparent;
    top: 16px;
    right: 16px;
    font-size: 15px;
  }
  .nt-sidebar__brand {
    padding: 14px;
  }
  .nt-sidebar__brand img,
  .nt-sidebar__brand svg {
    width: 55px;
  }
  .nt-sidebar__brand-name {
    font-size: 17px;
  }
  .nt-sidebar__toggle {
    display: none;
  }
  .nt-greeting__title {
    font-size: 20px;
  }
  .nt-greeting__subtitle {
    font-size: 13px;
  }
  .nt-right-container {
    width: 100%;
    margin: 0;
  }
  .nt-right-container .nt-sidebar-right {
    width: 100%;
    border: none;
    height: auto;
    padding-left: 10px;
  }
  .nt-right-container .nt-sidebar-right__tab[data-panel=notes] {
    display: none;
  }
  .nt-right-container .nt-sidebar-right__topbar-title {
    font-size: 18px;
    font-weight: 700;
  }
  .nt-right-container .nt-sidebar-right__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .nt-right-container .nt-sidebar-right__body .nt-sidebar-right__event {
    min-width: 50%;
  }
  .nt-right-container .nt-sidebar-right__body::-webkit-scrollbar {
    height: 4px;
  }
  .nt-right-container .nt-sidebar-right__body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
  }
  .nt-right-container .nt-sidebar-right__body::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
  }
  .nt-right-container .nt-sidebar-right__countdown {
    display: none;
  }
  .nt-right-container .nt-sidebar-right__view-all {
    margin-top: 20px;
    color: #0EA5E9;
  }
  .nt-tasks {
    order: 3;
    margin-top: 24px;
  }
  .nt-tasks__header {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .nt-tasks__header > div {
    flex-direction: column;
  }
  .nt-tasks__header__new-btn {
    flex: 1;
  }
  .nt-tasks .nt-tasks__actions {
    flex-direction: row;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
  }
  .nt-table__head th {
    padding-left: 8px;
    text-align: left;
  }
  .nt-tasks__title {
    padding-top: 10px;
    padding-left: 10px;
    white-space: nowrap;
  }
  .nt-tasks__new-btn {
    white-space: nowrap;
    font-size: 12px;
    padding: 10px 15px;
  }
  .nt-tasks__filter-icon-btn {
    padding: 6px;
  }
  .nt-progress-card {
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    max-width: 100%;
    margin-top: 32px;
  }
  .nt-progress-card__stats {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .nt-header__profile-name {
    display: none;
  }
  .nt-header__date-nav {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .nt-content.myDay {
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 30px;
    gap: 16px;
    padding-top: 10px;
  }
  .nt-content.myDay .nt-main-container {
    display: contents;
  }
  .nt-greeting {
    order: 0;
    width: 100%;
    margin-top: 30px;
  }
  .nt-greeting__title {
    font-size: 25px;
  }
  .nt-greeting__subtitle {
    padding-top: 5px;
    font-size: 15px;
  }
  .nt-command-bar {
    order: 1;
    width: 100%;
  }
  .nt-right-container {
    order: 4;
    width: 100%;
    margin: 0;
  }
  .nt-right-container .nt-sidebar-right {
    width: 100%;
    border: none;
  }
  .nt-right-container .nt-sidebar-right__tab[data-panel=notes] {
    display: none;
  }
  .nt-right-container .nt-sidebar-right__topbar-title {
    font-size: 20px;
  }
  .nt-right-container .nt-sidebar-right__body {
    display: flex;
    gap: 20px;
    overflow: hidden;
    padding-bottom: 20px;
    align-items: center;
  }
  .nt-right-container .nt-sidebar-right__new-btn {
    width: 50%;
  }
  .nt-right-container .nt-sidebar-right__group {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .nt-right-container .nt-sidebar-right__countdown {
    display: none;
  }
  .nt-right-container .nt-sidebar-right__view-all {
    margin-top: 20px;
    color: #3b82f6;
  }
  .nt-right-container .nt-sidebar-right__event {
    width: 50%;
  }
  .nt-tasks {
    order: 2;
    flex: 8;
  }
  .nt-table__head th {
    text-align: left;
  }
  .nt-progress-card {
    order: 3;
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .nt-progress-card__stats {
    display: none;
  }
  .nt-progress-card__title {
    font-size: 18px;
    white-space: nowrap;
    padding: 10px;
  }
  .nt-progress-card__subtitle {
    font-size: 12px;
  }
  .nt-header {
    padding: 15px;
    height: auto;
    flex-wrap: wrap;
    gap: 5px;
  }
  .nt-header .nt-header__open {
    display: block;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 22px;
    margin-right: 8px;
  }
  .nt-header__actions {
    gap: 8px;
    transform: scale(1);
    padding-right: 20px;
  }
  .nt-header__date-nav {
    order: 10;
    width: 100%;
    padding: 12px 0px 8px;
    margin-top: 8px;
    margin-bottom: -8px;
    border-top: 1px solid #2D333B;
    font-size: 18px;
  }
  .nt-header__profile {
    border-left: none;
    padding-left: 0;
    gap: 5px;
    flex-direction: row-reverse;
  }
  .nt-header__profile-info {
    text-align: left;
  }
  .nt-header__profile-name {
    font-size: 12px;
  }
  .nt-header__avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .nt-sidebar {
    position: fixed;
    height: 100%;
    z-index: 200;
    transform: translateX(-100%);
  }
  .nt-sidebar.is-open {
    transform: translateX(0);
  }
  .nt-sidebar__close {
    position: absolute;
    display: block;
    color: white;
    border: none;
    background: transparent;
    top: 16px;
    right: 16px;
    font-size: 15px;
  }
  .nt-sidebar__brand {
    padding: 14px;
  }
  .nt-sidebar__brand img,
  .nt-sidebar__brand svg {
    width: 55px;
  }
  .nt-sidebar__brand-name {
    font-size: 17px;
  }
  .nt-sidebar__toggle {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .nt-tasks .nt-tasks__filters {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .nt-tasks__filter-icon-btn {
    display: none;
  }
  .nt-tasks .nt-tasks__filters {
    display: flex;
  }
}
@media screen and (min-width: 1367px) {
  html, body {
    overflow: hidden;
    height: 100%;
  }
  .nt-layout {
    height: 100vh;
    overflow: hidden;
  }
  .nt-main {
    height: 100vh;
    overflow: hidden;
    min-height: 0;
  }
  main.nt-content {
    overflow: hidden;
    min-height: 0;
    flex: 1;
  }
  .nt-main-container {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nt-main-container::-webkit-scrollbar {
    display: none;
  }
}
html:has(.nt-auth),
body:has(.nt-auth) {
  overflow: auto;
  height: auto;
  min-height: 100vh;
  max-height: none;
}

.nt-auth {
  display: flex;
  width: 100%;
  overflow-y: auto;
}
.nt-auth__right {
  background: #161B22;
  position: relative;
  padding: clamp(32px, 5vmin, 64px);
  padding-bottom: 90px;
  min-width: 50%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nt-auth__right > *:not(.nt-auth__copyright):not(.nt-auth__terms) {
  width: 100%;
  max-width: 420px;
}
.nt-auth__right .nt-auth__title {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: left;
  margin-top: 0;
}
.nt-auth__subtitle {
  font-size: 15px;
  color: #8B949E;
  margin-bottom: 36px;
  text-align: left;
}
.nt-auth__field {
  margin-bottom: 18px;
}
.nt-auth__field:last-of-type {
  margin-bottom: 28px;
}
.nt-auth__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.nt-auth__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  box-sizing: border-box;
  transition: border-color box-shadow 0.25s ease;
}
.nt-auth__input::placeholder {
  color: rgba(139, 148, 158, 0.5);
}
.nt-auth__input:focus {
  outline: none;
  border-color: rgba(0, 136, 204, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}
.nt-auth__input:invalid {
  color: rgba(139, 148, 158, 0.5);
}
.nt-auth__input option {
  color: #FFFFFF;
}
.nt-auth__password-wrapper {
  display: flex;
  align-items: center;
}
.nt-auth__password-toggle {
  background: transparent;
  border: none;
  color: #8b95a7;
  cursor: pointer;
  font-size: 15px;
  margin-left: -8%;
  margin-top: 1%;
  display: none;
}
.nt-auth__password-toggle:hover {
  color: #c5cade;
}
.nt-auth__submit {
  width: 100%;
  padding: 13px;
  background: #0088CC;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.25s ease;
}
.nt-auth__submit:hover {
  background: rgb(0, 163.2, 244.8);
}
.nt-auth__submit:active {
  background: rgb(0, 119, 178.5);
}
.nt-auth__submit:disabled {
  background: rgba(0, 136, 204, 0.7);
  cursor: not-allowed;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nt-auth__error {
  font-size: 11px;
  color: #EF4444;
  margin-top: 5px;
  display: block;
}
.nt-auth__error-summary {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: #EF4444;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}
.nt-auth__error-summary:empty {
  display: none;
}
@keyframes nt-shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}
.nt-auth .nt-shake {
  animation: nt-shake 0.4s ease-in-out;
}
.nt-auth__divider {
  display: none;
}
.nt-auth__footer {
  text-align: center;
  font-size: 13px;
  color: #8B949E;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}
.nt-auth__link {
  color: #0EA5E9;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}
.nt-auth__link:hover {
  color: rgb(55.016194332, 184.6194331984, 242.983805668);
}
.nt-auth__socials-title {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.nt-auth__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.nt-auth__social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2D333B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B949E;
  text-decoration: none;
  transition: all 0.25s ease;
}
.nt-auth__social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}
.nt-auth__social-btn svg {
  width: 17px;
  height: 17px;
}
.nt-auth__legality {
  text-align: center;
  color: #0EA5E9;
  text-decoration: underline;
  transition: color 0.25s ease;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}
.nt-auth__copyright {
  padding-top: 15px;
  text-align: center;
  font-size: 10px;
  color: rgba(139, 148, 158, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nt-auth__copyright a {
  color: #0EA5E9;
  text-decoration: underline;
  transition: color 0.25s ease;
}
.nt-auth__copyright a:hover {
  color: rgb(55.016194332, 184.6194331984, 242.983805668);
}

.ts-dropdown {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.ts-dropdown .option {
  padding: 10px 14px;
  cursor: pointer;
  color: #FFFFFF;
}
.ts-dropdown .option.active, .ts-dropdown .option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nt-auth__right {
  position: relative;
  min-height: 100vh;
}

.nt-auth__terms {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.nt-auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.nt-auth__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8B949E;
  cursor: pointer;
}
.nt-auth__remember input[type=checkbox] {
  accent-color: #0088CC;
  cursor: pointer;
}
.nt-auth__forgot {
  font-size: 13px;
  color: #0EA5E9;
  text-decoration: none;
  transition: color 0.25s ease;
}
.nt-auth__forgot:hover {
  color: rgb(55.016194332, 184.6194331984, 242.983805668);
}

/* ============================================
   REGISTER - Estilos base (mobile-first)
   Media queries ficam em responsiveRegister/
   ============================================ */
/* -- Stepper -- */
.nt-stepper {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  /* Bolinha ativa: ponto branco com fundo azul */
  /* Bolinha concluída: azul com check */
  /* Etapa visitada sendo reeditada */
}
.nt-stepper__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #495057;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  /* Etapas futuras: invisíveis mas mantêm o espaço */
}
.nt-stepper__item[data-step-hidden=true] {
  visibility: hidden;
}
.nt-stepper__item--active, .nt-stepper__item.completed {
  color: #ffffff;
}
.nt-stepper__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1a1d26;
  border: 2px solid #2d323e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 0; /* esconde o número */
  color: transparent; /* garante que nada apareça */
}
.nt-stepper__text {
  font-size: 11px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.nt-stepper__item--active .nt-stepper__circle {
  background-color: #005a8d;
  border: 5px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 90, 141, 0.5);
}
.nt-stepper__item.completed .nt-stepper__circle {
  background-color: #005a8d;
  border: none;
}
.nt-stepper__item.completed .nt-stepper__circle::after {
  content: "✓";
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}
.nt-stepper__item--editing {
  opacity: 0.6;
}
.nt-stepper__item--editing .nt-stepper__circle {
  background-color: rgba(0, 90, 141, 0.5);
}

/* -- Layout da coluna direita -- */
.nt-auth__right {
  flex: 1.2;
  padding: 40px 24px;
  background-color: #161922;
  flex-direction: column;
  padding-top: clamp(40px, 6vh, 80px);
}
.nt-auth__right .nt-auth__title {
  margin-top: 0;
}

/* -- Input base -- */
.nt-auth__input {
  background-color: #0f111a;
  border: 1px solid #2d323e;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 6px;
}
.nt-auth__input:focus {
  border-color: #00a8ff;
}

/* -- Date input escuro -- */
input[type=date] {
  color-scheme: dark;
}
input[type=date]::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="white" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: 1;
}

/* -- Checkbox de termos -- */
.nt-auth__terms-check {
  margin-top: 28px;
  margin-bottom: 20px;
}

.nt-auth__terms-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #ffffff;
  cursor: pointer;
}
.nt-auth__terms-label input[type=checkbox] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #00a8ff;
  cursor: pointer;
  flex-shrink: 0;
}

/* -- Botão submit -- */
.nt-auth__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.nt-auth__submit--ghost {
  background: transparent;
  border: 1px solid #2d323e;
  margin-top: 10px;
}
.nt-auth__submit--ghost:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* -- Código de verificação -- */
.nt-auth__code-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

.nt-auth__input-code {
  width: 40px;
  height: 50px;
  background: #0f111a;
  border: 1px solid #2d323e;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}
.nt-auth__input-code:focus {
  border-color: #00a8ff;
  outline: none;
}

/* -- TomSelect customizado -- */
.ts-wrapper.nt-auth__input {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.ts-wrapper.nt-auth__input .ts-control {
  background: #0f111a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center !important;
  border: 1px solid #2d323e !important;
  border-radius: 6px !important;
  color: #fff;
  font-size: 14px;
  padding: 12px 16px !important;
  min-height: 46px !important;
  box-shadow: none;
}
.ts-wrapper.nt-auth__input .ts-control > input {
  color: #fff !important;
}
.ts-wrapper.nt-auth__input .ts-control > input::placeholder {
  color: #fff !important;
  opacity: 1 !important;
  font-size: 14px !important;
}
.ts-wrapper.nt-auth__input.focus .ts-control {
  border-color: #00a8ff !important;
}

.ts-dropdown {
  background: #0f111a !important;
  border: 1px solid #2d323e !important;
  border-radius: 6px;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.ts-dropdown .option {
  padding: 10px 14px;
  cursor: pointer;
  color: #fff !important;
}
.ts-dropdown .option.active, .ts-dropdown .option:hover {
  background: #005a8d !important;
  color: #fff;
}

/* -- Selects nativos -- */
select.nt-auth__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #0f111a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center !important;
  padding-right: 40px !important;
}

/* -- Timer -- */
.nt-auth__timer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 500;
}

/* -- Security Widget -- */
.nt-auth__security-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  padding-right: 4px;
}

.nt-auth__security-widget {
  position: relative;
  z-index: 10;
}
.nt-auth__security-widget[data-status=warning] .nt-auth__security-badge i {
  color: #f59e0b;
}
.nt-auth__security-widget[data-status=warning] .nt-auth__security-pulse {
  border-color: #f59e0b;
}
.nt-auth__security-widget[data-status=blocked] .nt-auth__security-badge i {
  color: #ef4444;
}
.nt-auth__security-widget[data-status=blocked] .nt-auth__security-pulse {
  border-color: #ef4444;
}

.nt-auth__security-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  position: relative;
  transition: all 0.25s ease;
}
.nt-auth__security-badge i {
  font-size: 1.1rem;
  color: var(--nt-primary);
  transition: all 0.25s ease;
}
.nt-auth__security-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nt-auth__security-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--nt-primary);
  opacity: 0;
  animation: nt-security-pulse 2s infinite;
  pointer-events: none;
}

@keyframes nt-security-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.nt-auth__security-popover {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 260px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nt-auth__security-widget:hover .nt-auth__security-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nt-auth__security-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nt-auth__security-item[hidden] {
  display: none !important;
}
.nt-auth__security-item:last-child {
  margin-bottom: 0;
}
.nt-auth__security-item i {
  width: 24px;
  text-align: center;
  font-size: 1rem;
  color: #94a3b8;
}

.nt-auth__security-text {
  font-size: 0.82rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* -- Form step -- */
.form-step {
  position: relative;
}
.form-step[hidden] {
  display: none !important;
}

/* ── Adições para o Security Widget e layout ──────────────────── */
/* Container label + valor dentro de cada item do popover */
.nt-auth__security-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

/* Rótulo superior (ex: "Expiração do código") */
.nt-auth__security-label {
  font-size: 0.68rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1;
}

/* Valor do countdown — sobreescrito pelo JS a cada segundo */
.nt-auth__security-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

/* Status "expirado" no item */
.nt-auth__security-item[data-type=expiration][data-expired=true] .nt-auth__security-text {
  color: #ef4444;
}
.nt-auth__security-item[data-type=expiration][data-expired=true] i {
  color: #ef4444;
}

/* ── Linha dupla (Cidade/Estado, Logradouro/Número) ─────────── */
.nt-auth__row {
  display: flex;
  gap: 12px;
}
.nt-auth__row .nt-auth__field--grow {
  flex: 1 1 0;
  min-width: 0;
}
.nt-auth__row .nt-auth__field--shrink {
  flex: 0 0 80px;
}

/* ── Hint de senha ───────────────────────────────────────────── */
.nt-auth__hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Hint do e-mail na etapa 3 ──────────────────────────────── */
.nt-auth__code-hint {
  text-align: center;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 4px;
}
.nt-auth__code-hint strong {
  color: #e2e8f0;
}

/* ── Actions na etapa de código (Voltar + Reenviar lado a lado) */
.nt-auth__actions {
  display: flex;
  gap: 10px;
  margin-top: 0;
}
.nt-auth__actions .nt-auth__submit {
  flex: 1;
  margin-top: 16px;
}
.nt-auth__actions--code {
  margin-top: 8px;
}
.nt-auth__actions--code .nt-auth__submit {
  margin-top: 0;
}

.nt-auth__date-selects {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.nt-auth__date-selects .ts-wrapper.nt-auth__input--day {
  flex: 2;
  min-width: 0;
}
.nt-auth__date-selects .ts-wrapper.nt-auth__input--month {
  flex: 3;
  min-width: 0;
}
.nt-auth__date-selects .ts-wrapper.nt-auth__input--year {
  flex: 2;
  min-width: 0;
}
.nt-auth__date-selects .ts-control > input[role=combobox] {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
}
.nt-auth__date-selects .ts-placeholder {
  color: #ffffff;
  pointer-events: none;
}

.nt-auth__skip-label {
  display: inline-block;
}

.nt-auth__skip-label--error {
  color: #e53935;
}
.nt-auth__skip-label--error input[type=checkbox] {
  outline: 2px solid #e53935;
}

.nt-auth__left {
  background: #0B0E14;
  padding: clamp(32px, 5vmin, 64px);
  min-width: 50%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 0;
}
.nt-auth__brand {
  position: absolute;
  top: clamp(32px, 5vmin, 64px);
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5%;
}
.nt-auth__logo-img {
  height: clamp(40px, 4.5vw, 50px);
  width: auto;
}
.nt-auth__brand-name {
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 39px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
.nt-auth__texts {
  width: 100%;
  max-width: 420px;
}
.nt-auth__highlight {
  color: #0088CC;
}
.nt-auth__caption {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #8B949E;
  line-height: 1.5;
  margin-bottom: 32px;
}
.nt-auth__left .nt-auth__title {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 15px;
  margin-top: clamp(35px, 5vmin, 70px);
}
.nt-auth__reviews {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 24px 56px;
  position: relative;
  display: none;
}
.nt-auth__testimony-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 10px;
}
.nt-auth__testimony-item--active {
  display: block;
  opacity: 1;
}
.nt-auth__testimony {
  font-size: 14px;
  color: #c5cade;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.nt-auth__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nt-auth__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0088CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.nt-auth__author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}
.nt-auth__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 24px;
}
.nt-auth__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-auth__dot--active {
  background: #0088CC;
  width: 20px;
  height: 10px;
  border-radius: 4px;
}
.nt-auth__next-btn {
  position: absolute;
  right: -22px;
  top: 35%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0088CC;
  border: none;
  color: #fff;
  font-size: 30px;
  padding-bottom: 6px;
  padding-left: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-auth__next-btn:hover {
  background: rgb(0, 163.2, 244.8);
}

@media (max-width: 767px) {
  .nt-auth {
    flex-direction: column;
    height: auto;
  }
  .nt-auth__left {
    width: 100%;
    height: auto;
    min-height: auto;
    margin-bottom: 20px;
    align-items: center;
  }
  .nt-auth__right {
    width: 100%;
    height: auto;
    min-height: auto;
    padding-bottom: clamp(32px, 5vmin, 64px);
  }
  .nt-auth__right .nt-auth__title {
    margin-top: 0;
  }
  .nt-auth__brand {
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: center;
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .nt-auth__logo-img {
    width: 60px;
    height: auto;
  }
  .nt-auth__texts {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .nt-auth__left .nt-auth__title {
    margin-top: 25px;
  }
  .nt-auth__reviews {
    position: relative;
    padding: 12px 5px 50px 15px;
    margin: auto;
  }
  .nt-auth__testimony-item {
    padding: 4px;
  }
  .nt-auth__testimony {
    font-size: 12px;
    line-height: 1.4;
  }
  .nt-auth__next-btn {
    display: none;
  }
  .nt-auth__dots {
    margin: 0;
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
  }
  .nt-auth__socials {
    margin-bottom: 20px;
  }
  .nt-auth__copyright {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 0;
  }
  .nt-auth__legality {
    position: static;
    margin-top: 30px;
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nt-auth__brand {
    max-width: 320px;
  }
  .nt-auth__left .nt-auth__title {
    margin-top: 25px;
  }
  .nt-auth__footer {
    margin-top: 20px;
  }
  .nt-auth__socials-title {
    margin-top: 20px;
  }
  .nt-auth__socials {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .nt-auth__logo-img {
    height: 38px;
  }
  .nt-auth__brand-name {
    font-size: 34px;
  }
  .nt-auth__brand {
    width: 100%;
    max-width: 420px;
    justify-content: flex-start;
  }
  .nt-auth__left .nt-auth__title {
    margin-top: 40px;
  }
  .nt-auth__socials-title {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .nt-auth__right {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    padding: 32px 24px 80px;
  }
}
/* ============================================
   REGISTER - Media queries (responsivo)
   ============================================ */
@media (max-width: 767px) {
  .nt-stepper__text {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nt-stepper__text {
    display: none;
  }
  .nt-auth__right {
    padding: 60px 6%;
  }
  .nt-auth__code-group {
    gap: 10px;
  }
  .nt-auth__input-code {
    width: 45px;
    height: 55px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .nt-auth__right {
    padding-top: 120px;
    padding-left: 8%;
    padding-right: 8%;
  }
  .nt-stepper {
    gap: 25px;
    margin-bottom: 40px;
  }
  .nt-stepper__circle {
    width: 32px;
    height: 32px;
  }
  .nt-stepper__item.completed .nt-stepper__circle::after {
    font-size: 18px;
  }
  .nt-auth__code-group {
    gap: 10px;
  }
  .nt-auth__input-code {
    width: 45px;
    height: 55px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .nt-auth__brand {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .nt-auth__brand {
    display: flex;
    justify-content: center;
  }
}
@media (max-height: 650px) {
  .nt-auth__left {
    position: sticky;
    top: 0;
    justify-content: flex-start;
    padding-top: clamp(32px, 5vmin, 64px);
    height: auto;
    min-height: 100vh;
  }
  .nt-auth__brand {
    position: relative;
    top: auto;
    margin-top: 5%;
    flex-shrink: 0;
    margin-bottom: 40px;
  }
  .nt-auth__texts {
    flex-shrink: 0;
  }
  .nt-auth__testimony,
  .nt-auth__testimonials,
  .nt-auth__dots {
    display: none;
  }
}
.nt-onboarding {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nt-onboarding__card {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.nt-onboarding__card::-webkit-scrollbar {
  width: 6px;
}
.nt-onboarding__card::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-onboarding__card::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-onboarding__skip {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 12px;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-onboarding__skip:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.nt-onboarding__progress {
  margin-bottom: 36px;
}
.nt-onboarding__progress-bar {
  height: 4px;
  background: rgba(45, 51, 59, 0.6);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.nt-onboarding__progress-fill {
  height: 100%;
  background: #0088CC;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nt-onboarding__progress-label {
  font-size: 11px;
  color: #8B949E;
  font-weight: 600;
}
.nt-onboarding__step {
  display: none;
}
.nt-onboarding__step.is-active {
  display: block;
}
.nt-onboarding__icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}
.nt-onboarding__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.nt-onboarding__title span {
  color: #0EA5E9;
}
.nt-onboarding__text {
  font-size: 14px;
  color: #8B949E;
  line-height: 1.7;
  margin-bottom: 24px;
}
.nt-onboarding__text strong {
  color: #FFFFFF;
  font-weight: 600;
}
.nt-onboarding__triade {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.nt-onboarding__triade-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #2D333B;
  background: rgba(11, 14, 20, 0.4);
}
.nt-onboarding__triade-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.nt-onboarding__triade-item p {
  font-size: 12px;
  color: #8B949E;
  margin: 0;
  line-height: 1.5;
}
.nt-onboarding__triade-item--importante .nt-onboarding__triade-dot {
  background: #0EA5E9;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}
.nt-onboarding__triade-item--urgente .nt-onboarding__triade-dot {
  background: #EF4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}
.nt-onboarding__triade-item--circunstancial .nt-onboarding__triade-dot {
  background: #F97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}
.nt-onboarding__triade-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.nt-onboarding__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.nt-onboarding__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-onboarding__label {
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nt-onboarding__select {
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  appearance: none;
  color-scheme: dark;
  transition: border-color 0.25s ease;
}
.nt-onboarding__select:focus {
  outline: none;
  border-color: rgba(0, 136, 204, 0.5);
}
.nt-onboarding__tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.nt-onboarding__tour-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(11, 14, 20, 0.4);
  border: 1px solid #2D333B;
  border-radius: 10px;
}
.nt-onboarding__tour-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.nt-onboarding__tour-item p {
  font-size: 12px;
  color: #8B949E;
  margin: 0;
  line-height: 1.5;
}
.nt-onboarding__tour-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.nt-onboarding__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #2D333B;
}
.nt-onboarding__next {
  padding: 11px 28px;
  background: #0088CC;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-onboarding__next:hover {
  background: rgb(0, 163.2, 244.8);
}
.nt-onboarding__back {
  padding: 11px 20px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-onboarding__back:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}

.nt-command-bar {
  background: rgba(22, 27, 34, 0.4);
  border: 1px solid #2D333B;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: 32px;
  transition: border-color box-shadow 0.25s ease;
}
.nt-command-bar:focus-within {
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.08);
}
.nt-command-bar__input-row {
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}
.nt-command-bar__icon {
  color: #0088CC;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.nt-command-bar__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: #FFFFFF;
  padding: 14px 0;
  font-family: "Inter", sans-serif;
}
.nt-command-bar__input::placeholder {
  color: rgba(139, 148, 158, 0.6);
}
.nt-command-bar__kbd {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nt-command-bar__kbd kbd {
  padding: 2px 6px;
  background: #0F1219;
  border: 1px solid #2D333B;
  border-radius: 4px;
  font-size: 10px;
  color: #8B949E;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.nt-command-bar__actions {
  display: flex;
  gap: 8px;
  padding: 8px 8px 4px;
  flex-wrap: wrap;
}
.nt-command-bar__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid #2D333B;
  background: transparent;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-command-bar__action-btn svg {
  width: 12px;
  height: 12px;
}
.nt-command-bar__action-btn:hover {
  background: #161B22;
  color: #FFFFFF;
}
.nt-command-bar__action-btn--primary {
  background: rgba(0, 136, 204, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
  color: #0EA5E9;
}
.nt-command-bar__action-btn--primary:hover {
  background: rgba(0, 136, 204, 0.25);
}

.nt-tasks__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nt-tasks__title {
  font-size: 18px;
  font-weight: 700;
}
.nt-tasks__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nt-tasks__filter-btn {
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #2D333B;
  background: #161B22;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-tasks__filter-btn:hover {
  color: #FFFFFF;
}
.nt-tasks__filter-btn.is-active {
  background: #0088CC;
  border-color: #0088CC;
  color: #FFFFFF;
}
.nt-tasks__badge {
  display: inline-block;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 4px;
}
.nt-tasks__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nt-tasks__new-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 60px;
  background: linear-gradient(135deg, #0088CC, #006699);
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
  transition: all 0.25s ease;
}
.nt-tasks__new-btn:hover {
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}
.nt-tasks__filter-icon-btn {
  padding: 8px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-tasks__filter-icon-btn:hover {
  color: #FFFFFF;
}
.nt-tasks__carried-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 8px;
  background: rgba(249, 115, 22, 0.06);
  border-left: 3px solid #F97316;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  cursor: pointer;
  width: fit-content;
}
.nt-tasks__carried-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F97316;
}
.nt-tasks__carried-count {
  font-size: 11px;
  font-weight: 600;
  color: rgba(249, 115, 22, 0.7);
}
.nt-tasks__past-indicator {
  font-size: 12px;
  color: #8B949E;
  padding: 6px 12px;
  margin-bottom: 16px;
  border: 1px solid #2D333B;
  border-radius: 10px;
  background: rgba(22, 27, 34, 0.4);
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-tasks__past-indicator strong {
  color: #FFFFFF;
  font-weight: 700;
}
.nt-tasks__past-indicator:hover {
  background: rgba(22, 27, 34, 0.8);
}

.nt-table {
  width: 100%;
  border-collapse: collapse;
}
.nt-table__head th {
  font-size: 10px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
  border-bottom: 1px solid #2D333B;
  font-weight: 700;
  white-space: nowrap;
}
.nt-table__row {
  border-bottom: 1px solid rgba(45, 51, 59, 0.5);
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-table__row:hover {
  background: rgba(22, 27, 34, 0.4);
}
.nt-table__row--replanned {
  background: rgba(249, 115, 22, 0.04);
}
.nt-table__row--replanned:hover {
  background: rgba(249, 115, 22, 0.08);
}
.nt-table__row--overdue {
  background: rgba(239, 68, 68, 0.04);
}
.nt-table__row--overdue:hover {
  background: rgba(239, 68, 68, 0.08);
}
.nt-table td {
  padding: 14px 16px;
  font-size: 14px;
  vertical-align: middle;
  height: 64px;
}
.nt-table__check {
  text-align: center;
  width: 48px;
}
.nt-table__checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #8B949E;
  border-radius: 50%;
  margin: 0 auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-table__checkbox:hover {
  border-color: #22C55E;
}
.nt-table__checkbox.is-done {
  background: #22C55E;
  border-color: #22C55E;
}
.nt-table__title {
  font-weight: 500;
}
.nt-table__title.is-done {
  color: #8B949E;
  text-decoration: line-through;
}
.nt-table__meta {
  color: #8B949E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nt-table__meta svg {
  width: 16px;
  height: 16px;
}
.nt-table__project {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
}
.nt-table__project-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8B949E;
}
.nt-table__badge-orange {
  background-color: rgba(249, 115, 22, 0.12);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.25);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nt-table__badge-green {
  background-color: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.25);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nt-table__badge-muted {
  background-color: rgba(139, 148, 158, 0.12);
  color: #8B949E;
  border: 1px solid rgba(139, 148, 158, 0.25);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nt-table__action-btn {
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 6px;
  color: #8B949E;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-table__action-btn:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-table__action-btn--danger:hover {
  color: #EF4444;
  border-color: #EF4444;
}

.nt-triade-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.nt-triade-dot--importante {
  background: #0EA5E9;
  box-shadow: 0 0 4px rgba(14, 165, 233, 0.5);
}
.nt-triade-dot--urgente {
  background: #EF4444;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.5);
}
.nt-triade-dot--circunstancial {
  background: #F97316;
  box-shadow: 0 0 4px rgba(249, 115, 22, 0.5);
}
.nt-triade-dot--undefined {
  background: #8B949E;
}
.nt-triade-dot--clickable {
  cursor: pointer;
  transition: transform 0.25s ease;
}
.nt-triade-dot--clickable:hover {
  transform: scale(1.4);
}

.nt-triade-dropdown {
  position: absolute;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 6px;
  z-index: 150;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}
.nt-triade-dropdown__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-triade-dropdown__option:hover {
  background: rgba(45, 51, 59, 0.5);
}
.nt-triade-dropdown__option.is-active {
  background: rgba(0, 136, 204, 0.1);
}

.nt-priority-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nt-priority-badge--importante {
  background: rgba(14, 165, 233, 0.12);
  color: #0EA5E9;
  border: 1px solid rgba(14, 165, 233, 0.25);
}
.nt-priority-badge--urgente {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.nt-priority-badge--circunstancial {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.nt-priority-badge--undefined {
  background: rgba(139, 148, 158, 0.12);
  color: #8B949E;
  border: 1px solid rgba(139, 148, 158, 0.25);
}

.nt-flag {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
}
.nt-flag--replanned {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.nt-flag--overdue {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.nt-task-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nt-task-timer__display {
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  font-size: 12px;
  color: #8B949E;
}
.nt-task-timer__display:not(:empty) {
  color: #FFFFFF;
}
.nt-task-timer__btn {
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-task-timer__btn:hover {
  color: #22C55E;
}
.nt-task-timer__btn.is-running {
  color: #22C55E;
}
.nt-task-timer--over .nt-task-timer__display {
  color: #EF4444 !important;
}

.nt-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  gap: 12px;
}
.nt-empty-state__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(45, 51, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B949E;
  margin-bottom: 8px;
}
.nt-empty-state__title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}
.nt-empty-state__subtitle {
  font-size: 13px;
  color: #8B949E;
  max-width: 280px;
  line-height: 1.6;
}
.nt-empty-state__btn {
  margin-top: 8px;
  padding: 8px 20px;
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 10px;
  color: #0EA5E9;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-empty-state__btn:hover {
  background: rgba(0, 136, 204, 0.25);
}
.nt-empty-state--compact {
  padding: 32px 16px;
}
.nt-empty-state--compact .nt-empty-state__icon {
  width: 48px;
  height: 48px;
}
.nt-empty-state--compact .nt-empty-state__title {
  font-size: 14px;
}
.nt-empty-state--compact .nt-empty-state__subtitle {
  font-size: 12px;
}

.nt-unscheduled-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 120;
}
.nt-unscheduled-backdrop.is-visible {
  display: block;
}

.nt-unscheduled-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  background: #161B22;
  border-left: 1px solid #2D333B;
  z-index: 121;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}
.nt-unscheduled-panel.is-open {
  transform: translateX(0);
}
.nt-unscheduled-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
  border-bottom: 1px solid #2D333B;
  flex-shrink: 0;
}
.nt-unscheduled-panel__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nt-unscheduled-panel__title {
  font-size: 15px;
  font-weight: 700;
}
.nt-unscheduled-panel__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(0, 136, 204, 0.15);
  color: #0EA5E9;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
}
.nt-unscheduled-panel__count:empty {
  display: none;
}
.nt-unscheduled-panel__close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-unscheduled-panel__close:hover {
  background: #2D333B;
  color: #FFFFFF;
}
.nt-unscheduled-panel__quick-add {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(45, 51, 59, 0.5);
  flex-shrink: 0;
}
.nt-unscheduled-panel__input-group {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 2px 4px 2px 12px;
  transition: all 0.25s ease;
}
.nt-unscheduled-panel__input-group:focus-within {
  border-color: rgba(0, 136, 204, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.08);
}
.nt-unscheduled-panel__quick-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 13px;
  padding: 6px 0;
  font-family: inherit;
}
.nt-unscheduled-panel__quick-input::placeholder {
  color: #8B949E;
  opacity: 0.7;
}
.nt-unscheduled-panel__quick-btn {
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-unscheduled-panel__quick-btn:hover {
  background: rgba(0, 136, 204, 0.15);
  color: #0EA5E9;
}
.nt-unscheduled-panel__hint {
  font-size: 12px;
  color: #8B949E;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(45, 51, 59, 0.5);
  flex-shrink: 0;
}
.nt-unscheduled-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.nt-unscheduled-panel__body::-webkit-scrollbar {
  width: 6px;
}
.nt-unscheduled-panel__body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-unscheduled-panel__body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-unscheduled-panel__loading {
  padding: 24px 20px;
  font-size: 13px;
  color: #8B949E;
}

.nt-unscheduled-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
  cursor: grab;
  transition: background 0.25s ease;
}
.nt-unscheduled-item:hover {
  background: rgba(22, 27, 34, 0.6);
}
.nt-unscheduled-item.is-dragging {
  opacity: 0.4;
  cursor: grabbing;
}
.nt-unscheduled-item__drag-handle {
  color: #8B949E;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}
.nt-unscheduled-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.nt-unscheduled-item__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nt-unscheduled-item__title {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nt-unscheduled-item__due {
  font-size: 11px;
  color: #8B949E;
}

.nt-drop-target {
  outline: 2px dashed rgba(0, 136, 204, 0.5);
  outline-offset: -2px;
  background: rgba(0, 136, 204, 0.05) !important;
}

.nt-dump-hint {
  font-size: 13px;
  color: #8B949E;
  margin-bottom: 20px;
  line-height: 1.5;
}

.nt-table__row.is-dragging {
  opacity: 0.4;
  cursor: grabbing;
}

.nt-sort-separator {
  pointer-events: none;
}
.nt-sort-separator td {
  background: rgba(0, 0, 0, 0.25);
  border: 2px dashed rgba(0, 136, 204, 0.6);
  border-radius: 6px;
  pointer-events: none;
}

.nt-table__sort-index {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.nt-table__row-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nt-table__timer-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-table__timer-btn:hover {
  color: #0EA5E9;
  background: rgba(14, 165, 233, 0.08);
}
.nt-table__timer-btn.is-running {
  color: #22C55E;
}
.nt-table__timer-btn.is-running:hover {
  background: rgba(34, 197, 94, 0.08);
}

.nt-table__complete-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-table__complete-btn:hover {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.08);
}

.nt-row-action-tooltip {
  position: relative;
}
.nt-row-action-tooltip__text {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.nt-row-action-tooltip:hover .nt-row-action-tooltip__text {
  opacity: 1;
}

.nt-checkbox-container {
  position: relative;
  display: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  user-select: none;
  align-items: center;
  justify-content: center;
}
.nt-checkbox-container .nt-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.nt-checkbox-container .nt-checkbox-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #2D333B;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.nt-checkbox-container .nt-checkbox-mark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.nt-checkbox-container:hover .nt-checkbox-mark {
  border-color: #0088CC;
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.15);
}
.nt-checkbox-container .nt-checkbox:checked ~ .nt-checkbox-mark {
  background-color: #0088CC;
  border-color: #0088CC;
  transform: scale(1.1);
}
.nt-checkbox-container .nt-checkbox:checked ~ .nt-checkbox-mark::after {
  display: block;
}

.nt-table__check-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.nt-table__check-wrapper .nt-table__sort-index {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nt-table__check-wrapper .nt-checkbox-container {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nt-table__row[data-completed=false][data-cancelled=false]:hover .nt-table__sort-index,
.nt-table__header-check:hover .nt-table__sort-index {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.nt-table__row[data-completed=false][data-cancelled=false]:hover .nt-checkbox-container,
.nt-table__header-check:hover .nt-checkbox-container {
  display: inline-flex;
  opacity: 1;
  transform: scale(1);
}

.nt-table--has-selection .nt-table__header-check .nt-table__sort-index,
.nt-table--has-selection .nt-table__row[data-completed=false][data-cancelled=false] .nt-table__sort-index {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.nt-table--has-selection .nt-table__header-check .nt-checkbox-container,
.nt-table--has-selection .nt-table__row[data-completed=false][data-cancelled=false] .nt-checkbox-container {
  display: inline-flex;
  opacity: 1;
  transform: scale(1);
}

.nt-table__row.is-selected {
  background: rgba(0, 136, 204, 0.08) !important;
}
.nt-table__row.is-selected:hover {
  background: rgba(0, 136, 204, 0.12) !important;
}

.nt-bulk-actions-bar {
  position: fixed;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  z-index: 1000;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nt-bulk-actions-bar.is-visible {
  bottom: 24px;
}
.nt-bulk-actions-bar__container {
  display: flex;
  align-items: center;
  background: rgba(22, 27, 34, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(45, 51, 59, 0.4);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  gap: 16px;
}
.nt-bulk-actions-bar__info {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nt-bulk-actions-bar__badge {
  background: #0088CC;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  min-width: 24px;
  text-align: center;
}
.nt-bulk-actions-bar__text {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}
.nt-bulk-actions-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(45, 51, 59, 0.5);
}
.nt-bulk-actions-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  padding-bottom: 2px;
}
.nt-bulk-actions-bar__actions::-webkit-scrollbar {
  width: 6px;
}
.nt-bulk-actions-bar__actions::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-bulk-actions-bar__actions::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-bulk-actions-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nt-bulk-actions-bar__btn svg {
  transition: transform 0.2s ease;
}
.nt-bulk-actions-bar__btn:hover {
  color: #FFFFFF;
  background: rgba(45, 51, 59, 0.4);
}
.nt-bulk-actions-bar__btn:hover svg {
  transform: scale(1.1);
}
.nt-bulk-actions-bar__btn--complete:hover {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
}
.nt-bulk-actions-bar__btn--cancel:hover {
  color: #F97316;
  background: rgba(249, 115, 22, 0.1);
}
.nt-bulk-actions-bar__btn--date:hover {
  color: #0EA5E9;
  background: rgba(14, 165, 233, 0.1);
}
.nt-bulk-actions-bar__btn--duplicate:hover {
  color: #A855F7;
  background: rgba(168, 85, 247, 0.1);
}
.nt-bulk-actions-bar__btn--delete:hover {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}
.nt-bulk-actions-bar__close {
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nt-bulk-actions-bar__close:hover {
  color: #FFFFFF;
  background: rgba(45, 51, 59, 0.4);
  transform: rotate(90deg);
}

@media (max-width: 640px) {
  .nt-bulk-actions-bar {
    bottom: -100px;
    width: 95%;
  }
  .nt-bulk-actions-bar.is-visible {
    bottom: 16px;
  }
  .nt-bulk-actions-bar__container {
    padding: 8px 12px;
    gap: 8px;
  }
  .nt-bulk-actions-bar__text {
    display: none;
  }
  .nt-bulk-actions-bar__divider {
    height: 18px;
  }
  .nt-bulk-actions-bar__actions {
    gap: 4px;
  }
  .nt-bulk-actions-bar__btn {
    padding: 8px;
  }
  .nt-bulk-actions-bar__btn span {
    display: none;
  }
}
.nt-modal--morning-alert {
  max-width: 560px;
}
.nt-modal--morning-alert .nt-modal__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #2D333B;
  align-items: flex-start;
}
.nt-modal--morning-alert .nt-modal__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nt-modal--morning-alert .nt-modal__footer {
  padding: 16px 20px;
}
.nt-modal--morning-alert .nt-modal__footer-main {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nt-ma__overview {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.nt-ma__list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  max-height: 380px;
}
.nt-ma__list::-webkit-scrollbar {
  width: 6px;
}
.nt-ma__list::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-ma__list::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-ma__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  border-bottom: 1px solid rgba(45, 51, 59, 0.4);
}
.nt-ma__item:last-child {
  border-bottom: none;
}
.nt-ma__item-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #8B949E;
}
.nt-ma__item-dot--importante {
  background: #0EA5E9;
}
.nt-ma__item-dot--urgente {
  background: #EF4444;
}
.nt-ma__item-dot--circunstancial {
  background: #F97316;
}
.nt-ma__item-title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nt-ma__item-overdue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nt-ma__review {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.nt-ma__progress {
  padding: 14px 24px 0;
  flex-shrink: 0;
}
.nt-ma__progress-bar {
  height: 3px;
  background: rgba(45, 51, 59, 0.5);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.nt-ma__progress-fill {
  height: 100%;
  background: #0088CC;
  border-radius: 100px;
  transition: width 0.3s ease;
}
.nt-ma__progress-label {
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nt-ma__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px 16px;
  gap: 6px;
}
.nt-ma__card-priority {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.nt-ma__card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8B949E;
}
.nt-ma__card-dot--importante {
  background: #0EA5E9;
}
.nt-ma__card-dot--urgente {
  background: #EF4444;
}
.nt-ma__card-dot--circunstancial {
  background: #F97316;
}
.nt-ma__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 8px;
}
.nt-ma__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #8B949E;
}
.nt-ma__card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nt-ma__card-meta-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.nt-ma__card-meta-item--overdue {
  color: #EF4444;
  font-weight: 600;
}
.nt-ma__card-meta-item--overdue svg {
  opacity: 1;
}
.nt-ma__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 28px 8px;
}
.nt-ma__action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #2D333B;
  background: rgba(11, 14, 20, 0.4);
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.25s ease;
}
.nt-ma__action-btn:hover {
  border-color: rgba(0, 136, 204, 0.4);
  background: rgba(0, 136, 204, 0.06);
  color: #FFFFFF;
}
.nt-ma__action-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.nt-ma__action-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nt-ma__action-btn-label {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}
.nt-ma__action-btn-desc {
  font-size: 11px;
  font-weight: 400;
  color: #8B949E;
}
.nt-ma__action-btn--today {
  border-color: rgba(0, 136, 204, 0.35);
  background: rgba(0, 136, 204, 0.08);
}
.nt-ma__action-btn--today .nt-ma__action-btn-icon {
  background: rgba(0, 136, 204, 0.15);
  color: #0EA5E9;
}
.nt-ma__action-btn--today:hover {
  border-color: rgba(0, 136, 204, 0.6);
  background: rgba(0, 136, 204, 0.14);
}
.nt-ma__action-btn--postpone .nt-ma__action-btn-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}
.nt-ma__action-btn--postpone:hover {
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.06);
}
.nt-ma__action-btn--skip .nt-ma__action-btn-icon {
  background: rgba(45, 51, 59, 0.4);
  color: #8B949E;
}
.nt-ma__action-btn.is-chosen {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.07);
  pointer-events: none;
}
.nt-ma__action-btn.is-chosen .nt-ma__action-btn-label {
  color: #22C55E;
}
.nt-ma__postpone-picker {
  padding: 10px 18px 4px;
}
.nt-ma__postpone-picker .nt-modal__input {
  font-size: 13px;
  padding: 9px 14px;
  cursor: pointer;
}
.nt-ma__review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  border-top: 1px solid #2D333B;
  flex-shrink: 0;
}
.nt-ma__skip-link {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8B949E;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nt-ma__skip-link:hover {
  color: #FFFFFF;
}
.nt-ma__next-btn {
  padding: 10px 22px;
  background: #0088CC;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-ma__next-btn:hover {
  background: rgb(0, 163.2, 244.8);
}
.nt-ma__next-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nt-appointments__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nt-appointments__title {
  font-size: 18px;
  font-weight: 700;
}
.nt-appointments__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nt-appointments__filter-btn {
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #2D333B;
  background: #161B22;
  color: #8B949E;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-appointments__filter-btn:hover {
  color: #FFFFFF;
}
.nt-appointments__filter-btn.is-active {
  background: #0088CC;
  border-color: #0088CC;
  color: #FFFFFF;
}
.nt-appointments__badge {
  display: inline-block;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 4px;
}
.nt-appointments__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nt-appointments__new-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 60px;
  background: linear-gradient(135deg, #0088CC, #006699);
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
  transition: all 0.25s ease;
}
.nt-appointments__new-btn:hover {
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}
.nt-appointments__filter-icon-btn {
  padding: 8px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.nt-appointments__filter-icon-btn:hover {
  color: #FFFFFF;
}
.nt-appointments__past-indicator {
  font-size: 12px;
  color: #8B949E;
  padding: 6px 12px;
  margin-bottom: 16px;
  border: 1px solid #2D333B;
  border-radius: 10px;
  background: rgba(22, 27, 34, 0.4);
  cursor: pointer;
  transition: background 0.25s ease;
}
.nt-appointments__past-indicator strong {
  color: #FFFFFF;
  font-weight: 700;
}
.nt-appointments__past-indicator:hover {
  background: rgba(22, 27, 34, 0.8);
}

.nt-planning {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.nt-planning__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.nt-planning__title {
  font-size: 20px;
  font-weight: 700;
}
.nt-planning__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nt-planning__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nt-planning__nav-btn {
  width: 32px;
  height: 32px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning__nav-btn:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-planning__period-label {
  font-size: 14px;
  font-weight: 600;
  min-width: 160px;
  text-align: center;
}
.nt-planning__today-btn {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning__today-btn:hover {
  color: #FFFFFF;
  border-color: #8B949E;
}
.nt-planning__help-btn {
  width: 32px;
  height: 32px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  border-radius: 50%;
  color: #0EA5E9;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning__help-btn:hover {
  background: rgba(0, 136, 204, 0.2);
}
.nt-planning__report-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 10px;
  color: #8B949E;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning__report-btn svg {
  flex-shrink: 0;
}
.nt-planning__report-btn:hover {
  color: #FFFFFF;
  border-color: #0EA5E9;
  color: #0EA5E9;
}
.nt-planning__tabs {
  display: flex;
  gap: 4px;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 16px;
  padding: 4px;
  width: fit-content;
}
.nt-planning__tab {
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #8B949E;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning__tab:hover {
  color: #FFFFFF;
}
.nt-planning__tab.is-active {
  background: #0B0E14;
  color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.nt-planning__month {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #2D333B;
  border-radius: 16px;
  overflow: hidden;
}
.nt-planning__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #161B22;
  border-bottom: 1px solid #2D333B;
}
.nt-planning__weekday {
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nt-planning__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.nt-planning__day {
  min-height: 100px;
  padding: 8px;
  border-right: 1px solid #2D333B;
  border-bottom: 1px solid #2D333B;
  cursor: pointer;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nt-planning__day:nth-child(7n) {
  border-right: none;
}
.nt-planning__day:hover {
  background: rgba(0, 136, 204, 0.04);
}
.nt-planning__day--other-month {
  opacity: 0.35;
}
.nt-planning__day--today {
  background: rgba(0, 136, 204, 0.06);
}
.nt-planning__day--dragging-over {
  background: rgba(0, 136, 204, 0.12);
  outline: 2px dashed rgba(0, 136, 204, 0.4);
  outline-offset: -2px;
}
.nt-planning__day-number {
  font-size: 12px;
  font-weight: 600;
  color: #8B949E;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-planning__day--today .nt-planning__day-number {
  background: #0EA5E9;
  color: #fff;
}
.nt-planning__day-pills {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  overflow: hidden;
}
.nt-planning__day-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: grab;
}
.nt-planning__day-pill:active {
  cursor: grabbing;
}
.nt-planning__day-pill--task {
  background: rgba(14, 165, 233, 0.12);
  color: #0EA5E9;
}
.nt-planning__day-pill--appointment {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}
.nt-planning__day-pill--more {
  background: transparent;
  color: #8B949E;
  font-size: 10px;
  padding: 0 6px;
}
.nt-planning__day-item--clickable {
  cursor: pointer;
}
.nt-planning__day-item--clickable:hover {
  background-color: var(--color-background-hover);
  border-radius: 4px;
}
.nt-planning__week {
  display: grid;
  grid-template-columns: 48px repeat(7, 1fr);
  border: 1px solid #2D333B;
  border-radius: 16px;
  overflow: hidden;
}
.nt-planning__week-header {
  display: contents;
}
.nt-planning__week-header-gutter {
  background: #161B22;
  border-bottom: 1px solid #2D333B;
  border-right: 1px solid #2D333B;
}
.nt-planning__week-day-header {
  background: #161B22;
  border-bottom: 1px solid #2D333B;
  border-right: 1px solid #2D333B;
  padding: 10px 8px;
  text-align: center;
}
.nt-planning__week-day-header:last-child {
  border-right: none;
}
.nt-planning__week-day-header--today .nt-planning__week-day-name {
  color: #0EA5E9;
}
.nt-planning__week-day-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8B949E;
}
.nt-planning__week-day-num {
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}
.nt-planning__week-day-header--today .nt-planning__week-day-num {
  color: #0EA5E9;
}
.nt-planning__week-body {
  display: contents;
}
.nt-planning__week-gutter {
  border-right: 1px solid #2D333B;
}
.nt-planning__week-hour-label {
  height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4px 6px 0 0;
  font-size: 10px;
  color: #8B949E;
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 51, 59, 0.5);
}
.nt-planning__week-col {
  position: relative;
  border-right: 1px solid #2D333B;
  min-height: 1152px;
}
.nt-planning__week-col:last-child {
  border-right: none;
}
.nt-planning__week-col--dragging-over {
  background: rgba(0, 136, 204, 0.05);
}
.nt-planning__week-slot {
  height: 48px;
  border-bottom: 1px solid rgba(45, 51, 59, 0.4);
}
.nt-planning__week-event {
  position: absolute;
  left: 2px;
  right: 2px;
  border-radius: 6px;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: 600;
  overflow: hidden;
  cursor: grab;
  z-index: 1;
}
.nt-planning__week-event:active {
  cursor: grabbing;
}
.nt-planning__week-event--task {
  background: rgba(14, 165, 233, 0.18);
  border-left: 2px solid #0EA5E9;
  color: #0EA5E9;
}
.nt-planning__week-event--appointment {
  background: rgba(249, 115, 22, 0.18);
  border-left: 2px solid #F97316;
  color: #F97316;
}
.nt-planning__year {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nt-planning__year-month {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning__year-month:hover {
  border-color: #0EA5E9;
}
.nt-planning__year-month-name {
  font-size: 12px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.nt-planning__year-heatmap {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.nt-planning__year-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #2D333B;
}
.nt-planning__year-dot--low {
  background: rgba(14, 165, 233, 0.25);
}
.nt-planning__year-dot--mid {
  background: rgba(14, 165, 233, 0.55);
}
.nt-planning__year-dot--high {
  background: #0EA5E9;
}
.nt-planning__year-total {
  font-size: 11px;
  color: #8B949E;
  margin-top: 8px;
}
.nt-planning__add-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0088CC;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
  flex-shrink: 0;
}
.nt-planning__day {
  position: relative;
}
.nt-planning__day:hover .nt-planning__add-btn {
  opacity: 1;
}
.nt-planning__week-col {
  position: relative;
}
.nt-planning__week-col:hover .nt-planning__add-btn {
  opacity: 1;
}
.nt-planning__add-menu {
  position: fixed;
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 16px;
  padding: 4px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  min-width: 160px;
}
.nt-planning__add-menu.is-open {
  display: flex;
}
.nt-planning__add-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}
.nt-planning__add-menu-item:hover {
  background: rgba(0, 136, 204, 0.1);
}
.nt-planning__add-menu-item svg {
  color: #8B949E;
  flex-shrink: 0;
}
.nt-planning__day-modal-add {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 136, 204, 0.08);
  border: 1px dashed rgba(0, 136, 204, 0.3);
  border-radius: 10px;
  color: #0EA5E9;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}
.nt-planning__day-modal-add:hover {
  background: rgba(0, 136, 204, 0.15);
}
.nt-planning__day-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.nt-planning__day-modal-backdrop.is-open {
  display: flex;
}
.nt-planning__day-modal {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 20px;
  width: 680px;
  height: 70vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.nt-planning__day-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #2D333B;
  flex-shrink: 0;
}
.nt-planning__day-modal-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nt-planning__day-modal-date {
  font-size: 16px;
  font-weight: 700;
  min-width: 200px;
  text-align: center;
}
.nt-planning__day-modal-close {
  background: transparent;
  border: none;
  color: #8B949E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.25s ease;
}
.nt-planning__day-modal-close:hover {
  color: #FFFFFF;
}
.nt-planning__day-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nt-planning__day-modal-body::-webkit-scrollbar {
  width: 6px;
}
.nt-planning__day-modal-body::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-planning__day-modal-body::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-planning__day-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.nt-planning__day-stat {
  background: rgba(11, 14, 20, 0.5);
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.nt-planning__day-stat-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}
.nt-planning__day-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nt-planning__day-chart {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nt-planning__day-chart-canvas {
  flex-shrink: 0;
}
.nt-planning__day-chart-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.nt-planning__day-chart-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.nt-planning__day-chart-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-planning__day-chart-name {
  flex: 1;
  color: #FFFFFF;
}
.nt-planning__day-chart-pct {
  font-weight: 600;
  color: #8B949E;
}
.nt-planning__day-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.nt-planning__day-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nt-planning__day-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(11, 14, 20, 0.4);
  border: 1px solid #2D333B;
  border-radius: 10px;
  font-size: 13px;
}
.nt-planning__day-item--done {
  opacity: 0.5;
}
.nt-planning__day-item-title {
  flex: 1;
  font-weight: 500;
}
.nt-planning__day-item-title.is-done {
  text-decoration: line-through;
  color: #8B949E;
}
.nt-planning__day-item-meta {
  font-size: 11px;
  color: #8B949E;
  white-space: nowrap;
}

.nt-planning-onboarding {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-planning-onboarding__card {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 20px;
  width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}
.nt-planning-onboarding__card::-webkit-scrollbar {
  width: 6px;
}
.nt-planning-onboarding__card::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-planning-onboarding__card::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-planning-onboarding__skip {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #8B949E;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning-onboarding__skip:hover {
  color: #FFFFFF;
}
.nt-planning-onboarding__step {
  display: none;
}
.nt-planning-onboarding__step.is-active {
  display: block;
}
.nt-planning-onboarding__icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.nt-planning-onboarding__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.nt-planning-onboarding__title span {
  color: #0EA5E9;
}
.nt-planning-onboarding__text {
  font-size: 14px;
  color: #8B949E;
  line-height: 1.7;
  margin-bottom: 20px;
}
.nt-planning-onboarding__tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.nt-planning-onboarding__tip {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(11, 14, 20, 0.5);
  border: 1px solid #2D333B;
  border-radius: 10px;
}
.nt-planning-onboarding__tip-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.nt-planning-onboarding__tip-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.nt-planning-onboarding__tip-text {
  font-size: 12px;
  color: #8B949E;
  line-height: 1.6;
}
.nt-planning-onboarding__progress {
  margin-bottom: 24px;
}
.nt-planning-onboarding__progress-bar {
  height: 4px;
  background: #2D333B;
  border-radius: 2px;
  margin-bottom: 6px;
}
.nt-planning-onboarding__progress-fill {
  height: 100%;
  background: #0EA5E9;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nt-planning-onboarding__progress-label {
  font-size: 11px;
  color: #8B949E;
}
.nt-planning-onboarding__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.nt-planning-onboarding__back {
  background: transparent;
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 8px 20px;
  color: #8B949E;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning-onboarding__back:hover {
  color: #FFFFFF;
}
.nt-planning-onboarding__next {
  background: #0088CC;
  border: none;
  border-radius: 10px;
  padding: 8px 24px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nt-planning-onboarding__next:hover {
  background: rgb(0, 163.2, 244.8);
}

.nt-planning-report__layout {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 24px;
  min-height: 0;
}
@media (max-width: 900px) {
  .nt-planning-report__layout {
    grid-template-columns: 1fr;
  }
}
.nt-planning-report__cards {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .nt-planning-report__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nt-planning-report__card {
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nt-planning-report__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.nt-planning-report__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-planning-report__card-icon--task {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}
.nt-planning-report__card-icon--time {
  background: rgba(14, 165, 233, 0.15);
  color: #0EA5E9;
}
.nt-planning-report__card-icon--urgent {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}
.nt-planning-report__card-icon--peak {
  background: rgba(234, 179, 8, 0.15);
  color: #EAB308;
}
.nt-planning-report__card-label {
  font-size: 11px;
  color: #8B949E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.nt-planning-report__card-value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.nt-planning-report__card-value {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}
.nt-planning-report__card-sub {
  font-size: 12px;
  color: #8B949E;
  font-weight: 500;
  white-space: nowrap;
}
.nt-planning-report__card-sub--peak {
  color: #EAB308;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nt-planning-report__main {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.nt-planning-report__section {
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid #2D333B;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nt-planning-report__section-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nt-planning-report__section-title {
  font-size: 11px;
  font-weight: 700;
  color: #8B949E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.nt-planning-report__section-sub {
  font-size: 11px;
  color: #8B949E;
  margin: 0;
  opacity: 0.7;
}
.nt-planning-report__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-planning-report__bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 48px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.nt-planning-report__bar-label {
  color: #8B949E;
  text-align: right;
  white-space: nowrap;
  font-size: 12px;
}
.nt-planning-report__bar-track {
  height: 24px;
  border-radius: 6px;
  background: rgba(45, 51, 59, 0.6);
  overflow: visible;
  display: flex;
  position: relative;
}
.nt-planning-report__bar-segment {
  height: 100%;
  transition: width 0.4s ease;
  position: relative;
}
.nt-planning-report__bar-segment:first-child {
  border-radius: 6px 0 0 6px;
}
.nt-planning-report__bar-segment:last-child {
  border-radius: 0 6px 6px 0;
}
.nt-planning-report__bar-segment:only-child {
  border-radius: 6px;
}
.nt-planning-report__bar-segment:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #FFFFFF;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  border: 1px solid #2D333B;
}
.nt-planning-report__bar-seg-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  white-space: nowrap;
}
.nt-planning-report__bar-pct {
  font-size: 12px;
  color: #8B949E;
  white-space: nowrap;
  text-align: right;
}
.nt-planning-report__bar-pct--peak {
  color: #EAB308;
  font-weight: 700;
}
.nt-planning-report__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.nt-planning-report__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #8B949E;
}
.nt-planning-report__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-planning-report__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.nt-planning-report__table th {
  text-align: left;
  padding: 6px 12px;
  color: #8B949E;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #2D333B;
}
.nt-planning-report__table th:not(:first-child) {
  text-align: right;
}
.nt-planning-report__table td {
  padding: 10px 12px;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(45, 51, 59, 0.4);
}
.nt-planning-report__table td:not(:first-child) {
  text-align: right;
  color: #8B949E;
}
.nt-planning-report__table td:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.nt-planning-report__table tr:last-child td {
  border-bottom: none;
}
.nt-planning-report__table tr:hover td {
  background: rgba(45, 51, 59, 0.25);
}
.nt-planning-report__table-role-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-planning-report__weight-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.nt-planning-report__weight-bar {
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: rgba(45, 51, 59, 0.6);
  overflow: hidden;
}
.nt-planning-report__weight-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.nt-planning-report__appts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nt-planning-report__appt-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.nt-planning-report__appt-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.nt-planning-report__appt-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.nt-planning-report__appt-time {
  font-size: 11px;
  font-weight: 600;
}
.nt-planning-report__appt-title {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nt-planning-report__appt-loc {
  font-size: 11px;
  color: #8B949E;
}
.nt-planning-report__loading {
  color: #8B949E;
  font-size: 13px;
  padding: 20px 0;
  text-align: center;
}

.nt-modal--report .nt-modal__panel {
  display: block !important;
  padding: 0;
}
.nt-modal--report .nt-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #2D333B;
}
.nt-modal--report .nt-modal__title-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.nt-modal--report .nt-modal__subtitle {
  font-size: 11px;
  color: #8B949E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nt-modal--report .nt-modal__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nt-modal--report .nt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1;
  white-space: nowrap;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s, opacity 0.15s;
}
.nt-modal--report .nt-btn svg {
  flex-shrink: 0;
}
.nt-modal--report .nt-btn--ghost {
  color: #8B949E;
  border-color: #2D333B;
}
.nt-modal--report .nt-btn--ghost:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(45, 51, 59, 0.4);
}
.nt-modal--report .nt-btn--primary {
  color: #fff;
  background: #0088CC;
  border-color: #0088CC;
}
.nt-modal--report .nt-btn--primary:hover {
  opacity: 0.88;
}

.nt-projects-2026 {
  --bg-base: #0a0a0c;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-hover-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #8b949e;
  --accent-glow: rgba(168, 85, 247, 0.2);
  --accent-glow-strong: rgba(168, 85, 247, 0.4);
  --btn-primary: linear-gradient(135deg, #7c3aed, #a855f7);
  --btn-primary-glow: rgba(124, 58, 237, 0.4);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  padding: 32px 40px;
  background-color: var(--bg-base);
  min-height: calc(100vh - 64px);
}
.nt-projects-2026__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.nt-projects-2026__title-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-projects-2026__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.nt-projects-2026__breadcrumb .nt-breadcrumb__item {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}
.nt-projects-2026__breadcrumb .nt-breadcrumb__item:not(.is-active):hover {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.nt-projects-2026__breadcrumb .nt-breadcrumb__item.is-active {
  color: var(--text-primary);
  font-weight: 600;
}
.nt-projects-2026__breadcrumb .nt-breadcrumb__separator {
  color: rgba(139, 148, 158, 0.5);
  user-select: none;
}
.nt-projects-2026__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nt-projects-2026__subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}
.nt-projects-2026__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nt-projects-2026__btn-new {
  background: var(--btn-primary);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--btn-primary-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nt-projects-2026__btn-new:hover {
  box-shadow: 0 6px 20px var(--btn-primary-glow);
  transform: translateY(-1px);
}
.nt-projects-2026__btn-ghost {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nt-projects-2026__btn-ghost:hover {
  background: var(--card-hover-bg);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.nt-projects-2026__btn-ghost:hover .nt-folder-card__actions {
  opacity: 1;
  pointer-events: auto;
}
.nt-projects-2026__search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.nt-projects-2026__search-box svg {
  position: absolute;
  left: 12px;
  color: var(--text-secondary);
}
.nt-projects-2026__search-box input {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 10px 16px 10px 36px;
  font-size: 14px;
  outline: none;
  width: 240px;
  transition: all 0.3s ease;
}
.nt-projects-2026__search-box input::placeholder {
  color: var(--text-secondary);
}
.nt-projects-2026__search-box input:focus {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}
.nt-projects-2026__filter-select {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 10px 32px 10px 16px;
  font-size: 14px;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b949e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.nt-projects-2026__filter-select:hover {
  background-color: var(--card-hover-bg);
}
.nt-projects-2026__filter-select option {
  background: var(--bg-base);
  color: var(--text-primary);
}
.nt-projects-2026__section {
  margin-bottom: 48px;
}
.nt-projects-2026__section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--text-primary);
}
.nt-projects-2026__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: var(--text-secondary);
  width: 100%;
  grid-column: 1/-1;
}
.nt-projects-2026__empty svg {
  color: var(--text-secondary);
  opacity: 0.3;
  margin-bottom: 16px;
}
.nt-projects-2026__empty h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}
.nt-projects-2026__empty p {
  font-size: 14px;
  margin: 0;
}
.nt-projects-2026__folders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.nt-projects-2026__projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.nt-projects-2026 .nt-folder-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.nt-projects-2026 .nt-folder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nt-projects-2026 .nt-folder-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--card-hover-bg);
}
.nt-projects-2026 .nt-folder-card:hover::before {
  opacity: 1;
}
.nt-projects-2026 .nt-folder-card:hover .nt-folder-card__icon {
  color: #ffffff;
  transform: scale(1.05);
}
.nt-projects-2026 .nt-folder-card:hover .nt-folder-card__actions {
  opacity: 1;
  pointer-events: auto;
}
.nt-projects-2026 .nt-folder-card__icon {
  color: #8b949e;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.nt-projects-2026 .nt-folder-card__icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
.nt-projects-2026 .nt-folder-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  z-index: 1;
  position: relative;
  width: 100%;
}
.nt-projects-2026 .nt-folder-card__actions {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.nt-projects-2026 .nt-folder-card__actions button {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nt-projects-2026 .nt-folder-card__actions button svg {
  width: 14px;
  height: 14px;
}
.nt-projects-2026 .nt-folder-card__actions button:hover {
  color: var(--text-primary);
  background: var(--card-hover-bg);
  border-color: rgba(255, 255, 255, 0.2);
}
.nt-projects-2026 .nt-folder-card__actions button.btn-delete:hover {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.3);
}
.nt-projects-2026 .nt-proj-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.nt-projects-2026 .nt-proj-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}
.nt-projects-2026 .nt-proj-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: var(--card-hover-bg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--accent-glow) inset;
}
.nt-projects-2026 .nt-proj-card:hover::before {
  opacity: 1;
}
.nt-projects-2026 .nt-proj-card:hover .nt-proj-card__title {
  color: #fff;
}
.nt-projects-2026 .nt-proj-card__ring-container {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.nt-projects-2026 .nt-proj-card__ring-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.nt-projects-2026 .nt-proj-card__ring-svg circle {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}
.nt-projects-2026 .nt-proj-card__ring-svg circle.bg {
  stroke: rgba(255, 255, 255, 0.05);
}
.nt-projects-2026 .nt-proj-card__ring-svg circle.progress {
  stroke: #a855f7;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.4));
}
.nt-projects-2026 .nt-proj-card__ring-text {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.nt-projects-2026 .nt-proj-card__ring-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nt-projects-2026 .nt-proj-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  z-index: 1;
}
.nt-projects-2026 .nt-proj-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.nt-projects-2026 .nt-proj-card__meta {
  font-size: 13px;
  color: var(--text-secondary);
}
.nt-projects-2026 .nt-proj-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.nt-project-details {
  --bg-base: #0a0a0c;
  --card-bg-solid: #18181b;
  --card-hover-bg: #202024;
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #8b949e;
  --accent-glow: rgba(168, 85, 247, 0.15);
  --btn-primary: linear-gradient(135deg, #7c3aed, #a855f7);
  --btn-primary-glow: rgba(124, 58, 237, 0.4);
  --tl-important: #e74c3c;
  --tl-urgent: #f1c40f;
  --tl-circumstantial: #3498db;
  --tl-line: rgba(255, 255, 255, 0.1);
}
.nt-project-details__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}
.nt-project-details__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nt-project-details__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nt-project-details__back:hover {
  color: var(--text-primary);
}
.nt-project-details__title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nt-project-details__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.nt-project-details__title:hover {
  opacity: 0.8;
}
.nt-project-details__title:hover .nt-project-details__title-edit-icon {
  opacity: 1;
  transform: scale(1);
}
.nt-project-details__title-edit-icon {
  color: var(--text-secondary);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nt-project-details__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}
.nt-project-details__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nt-project-details__meta-item--progress {
  color: #a855f7;
  font-weight: 500;
}
.nt-project-details__header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nt-project-details__sort {
  position: relative;
}
.nt-project-details__sort-select {
  background: var(--card-bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 8px 32px 8px 16px;
  font-size: 13px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b949e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.nt-project-details__sort-select:hover, .nt-project-details__sort-select:focus {
  background-color: var(--card-hover-bg);
  border-color: rgba(255, 255, 255, 0.2);
}
.nt-project-details__sort-select option {
  background: var(--bg-base);
  color: var(--text-primary);
}
.nt-project-details__add-delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--btn-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--btn-primary-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nt-project-details__add-delivery-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--btn-primary-glow);
}
.nt-project-details__cards {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
}
.nt-project-details__cards::-webkit-scrollbar {
  height: 8px;
}
.nt-project-details__cards::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.nt-project-details__cards::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.nt-project-details__cards::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nt-details-cards__fixed {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-color);
  padding-right: 24px;
  margin-right: 24px;
}
.nt-details-cards__scroll {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.nt-details-card {
  width: 320px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-height: 100%;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding-bottom: 8px;
}
.nt-details-card--new {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  min-height: 120px;
  flex: none;
}
.nt-details-card--new:not(.is-editing):hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.05);
  color: var(--text-primary);
}
.nt-details-card--new.is-editing {
  cursor: default;
  align-items: stretch;
  padding: 0;
  background: #141418;
  border-style: solid;
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.1), 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nt-details-card--new.is-editing .nt-details-card__new-icon,
.nt-details-card--new.is-editing .nt-details-card__new-label,
.nt-details-card--new.is-editing .nt-details-card__new-sub {
  display: none;
}
.nt-details-card__new-icon {
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: inherit;
}
.nt-details-card__new-label {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.nt-details-card__new-sub {
  display: none;
}
.nt-details-card__header {
  background: var(--card-bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.nt-details-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.nt-details-card--root {
  background: transparent;
  border: none;
}
.nt-details-card--root .nt-details-card__header {
  background: transparent;
  border: none;
  padding: 0 0 8px 0;
  margin-bottom: 8px;
}
.nt-details-card--root .nt-details-card__header::before {
  display: none;
}
.nt-details-card--root .nt-details-card__header .nt-details-card__add-btn,
.nt-details-card--root .nt-details-card__header .nt-details-card__filter-btn {
  margin-right: 4px;
}
.nt-details-card--root .nt-details-card__header .nt-details-card__header-meta-right {
  padding-right: 8px;
}
.nt-details-card--root .nt-details-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.nt-details-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.nt-details-card__title--editable {
  cursor: pointer;
}
.nt-details-card__title--editable:hover .nt-details-card__title-edit-icon {
  opacity: 1;
}
.nt-details-card__title-edit-icon {
  opacity: 0;
  color: var(--text-secondary);
  transition: opacity 0.2s;
}
.nt-details-card__header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nt-details-card__header-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.nt-details-card__due {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
}
.nt-details-card__header-meta-right {
  display: flex;
  gap: 4px;
}
.nt-details-card__add-btn, .nt-details-card__filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nt-details-card__add-btn:hover, .nt-details-card__filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}
.nt-details-card__delete-btn {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid transparent;
  color: rgba(239, 68, 68, 0.5);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nt-details-card__delete-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}
.nt-details-card__filters {
  padding: 0 16px;
}
.nt-details-card__filter-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-details-card__filter-select, .nt-details-card__filter-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  width: 100%;
  transition: all 0.2s ease;
}
.nt-details-card__filter-select:focus, .nt-details-card__filter-input:focus {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.nt-details-card__filter-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b949e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.nt-details-card__filter-select option {
  background: var(--bg-base);
  color: var(--text-primary);
}
.nt-details-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
  padding-left: 16px;
  padding-right: 16px;
}
.nt-details-card__body::-webkit-scrollbar {
  width: 4px;
}
.nt-details-card__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.nt-details-card__empty {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  padding: 32px 0;
  font-style: italic;
}
.nt-details-card__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.nt-details-card__group-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0 0;
}
.nt-details-card__activity {
  background: var(--card-bg-solid);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nt-details-card__activity:hover {
  background: var(--card-hover-bg);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.nt-details-card__activity.is-done {
  opacity: 0.5;
}
.nt-details-card__activity.is-done:hover {
  opacity: 0.8;
}
.nt-details-card__activity.is-done .nt-details-card__activity-title {
  text-decoration: line-through;
}
.nt-details-card__activity-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.nt-details-card__activity-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  word-break: break-word;
}
.nt-details-card__activity-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}
.nt-details-card__activity-meta svg {
  opacity: 0.7;
}
.nt-details-card__activity-badges {
  display: flex;
  gap: 6px;
}
.nt-details-card__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nt-details-card--placeholder {
  background: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  min-height: 140px;
}

.nt-inline-form__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
  color: #a855f7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nt-inline-form__header svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.nt-inline-form__title-input {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
  margin: 0 16px 12px;
  width: calc(100% - 32px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nt-inline-form__title-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.nt-inline-form__title-input:focus {
  border-color: rgba(168, 85, 247, 0.7);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.nt-inline-form__title-input.is-error {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  animation: shake 0.3s ease;
}
.nt-inline-form__title-input-focus-hint {
  font-size: 11px;
  color: rgba(168, 85, 247, 0.5);
  margin: -8px 16px 12px;
  padding-left: 4px;
  font-style: italic;
}
.nt-inline-form__row {
  display: flex;
  gap: 8px;
  margin: 0 16px 12px;
}
.nt-inline-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.nt-inline-form__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 2px;
}
.nt-inline-form__select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  padding: 8px 28px 8px 10px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b949e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  width: 100%;
  transition: border-color 0.2s;
}
.nt-inline-form__select option {
  background: #141418;
  color: #fff;
}
.nt-inline-form__select:focus {
  border-color: rgba(168, 85, 247, 0.5);
}
.nt-inline-form__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  padding: 8px 10px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nt-inline-form__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.nt-inline-form__input:focus {
  border-color: rgba(168, 85, 247, 0.5);
}
.nt-inline-form__desc {
  display: block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: inherit;
  line-height: 1.5;
  padding: 9px 12px;
  resize: none;
  outline: none;
  width: calc(100% - 32px);
  min-height: 58px;
  margin: 0 16px 14px;
  box-sizing: border-box;
  transition: border-color 0.2s, color 0.2s;
}
.nt-inline-form__desc::placeholder {
  color: rgba(255, 255, 255, 0.18);
  font-style: italic;
}
.nt-inline-form__desc:focus {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.nt-inline-form__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.nt-inline-form__btn-cancel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nt-inline-form__btn-cancel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nt-inline-form__btn-save {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}
.nt-inline-form__btn-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.5);
}
.nt-inline-form__btn-save:disabled {
  opacity: 0.6;
  pointer-events: none;
  transform: none;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}
.nt-timeline {
  position: relative;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nt-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--tl-line);
  z-index: 0;
}
.nt-timeline__group {
  position: relative;
  z-index: 1;
}
.nt-timeline__group.is-open .nt-timeline__group-body {
  display: flex;
}
.nt-timeline__group.is-open .nt-timeline__group-chevron {
  transform: rotate(180deg);
}
.nt-timeline__group-header {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  position: relative;
}
.nt-timeline__group-header:hover {
  color: var(--text-primary);
}
.nt-timeline__group-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--text-secondary);
  margin-right: 12px;
  position: relative;
  z-index: 2;
}
.nt-timeline__group-dot.is-today {
  border-color: #a855f7;
  background: #a855f7;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}
.nt-timeline__group-dot.is-past {
  border-color: rgba(255, 255, 255, 0.2);
}
.nt-timeline__group-label {
  flex: 1;
  text-align: left;
}
.nt-timeline__group-label.is-today {
  color: #a855f7;
}
.nt-timeline__group-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 11px;
  margin-right: 8px;
}
.nt-timeline__group-chevron {
  transition: transform 0.2s ease;
}
.nt-timeline__group-body {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
  padding-top: 12px;
  padding-bottom: 8px;
  animation: fadeIn 0.3s ease;
}

.nt-triade-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nt-triade-dot--important {
  background-color: var(--tl-important);
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.4);
}
.nt-triade-dot--urgent {
  background-color: var(--tl-urgent);
  box-shadow: 0 0 6px rgba(241, 196, 15, 0.4);
}
.nt-triade-dot--circumstantial {
  background-color: var(--tl-circumstantial);
  box-shadow: 0 0 6px rgba(52, 152, 219, 0.4);
}

.nt-context-menu {
  position: absolute;
  background: #1a1a1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nt-context-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nt-context-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  text-align: left;
  transition: background 0.2s;
}
.nt-context-menu__item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.nt-context-menu__item svg {
  color: var(--text-secondary);
}

.nt-grouped-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-secondary);
  gap: 16px;
}
.nt-grouped-loading__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #a855f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nt-settings {
  max-width: 1100px;
}
.nt-settings__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #2D333B;
  margin-bottom: 24px;
}
.nt-settings__tab {
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: #8B949E;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}
.nt-settings__tab:hover {
  color: #FFFFFF;
}
.nt-settings__tab.is-active {
  color: #0088CC;
}
.nt-settings__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0088CC;
}
.nt-settings__card {
  background: #161B22;
  border: 1px solid #2D333B;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .nt-settings__tabs {
    overflow-x: auto;
    white-space: nowrap;
  }
  .nt-settings__card {
    padding: 16px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0B0E14;
  color: #FFFFFF;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: "Inter", sans-serif;
}

.nt-layout {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.nt-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.nt-content {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}
.nt-content::-webkit-scrollbar {
  width: 6px;
}
.nt-content::-webkit-scrollbar-track {
  background: #0B0E14;
}
.nt-content::-webkit-scrollbar-thumb {
  background: #2D333B;
  border-radius: 10px;
}
.nt-content.myDay {
  display: flex;
}
.nt-content.myDay .nt-main-container {
  width: 100%;
  padding-right: 32px;
}

.nt-content--project-details {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
