@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    cursor: url('../../assets/cursors/normal.png'), auto;
}

a, button, span, li, td {
    cursor: url('../../assets/cursors/hand.png'), auto;
}

input, label, textarea, p, h1, h2, h3, h4, h5, h6 {
    cursor: url('../../assets/cursors/text.png'), auto;
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 289px;
    height: 88px;
    border-radius: 99px;
    border: 3px solid hsla(0, 0%, 100%, 0.3);
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(1px);
    box-shadow:
        inset 0 0 8px 1px hsla(0, 0%, 100%, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.home-header {
    position: fixed;
    justify-content: space-between;
    align-items: center;
    display: flex;
    height: 65px;
    padding: 0 25px;
    border-bottom: 1px solid #ddd;
    inset: 0 0 auto 0;
    z-index: 10000;
    backdrop-filter: blur(12px);
}

.left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo img {
    height: 32px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a,
.login {
    color: black;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

nav a:hover,
.login:hover {
    text-decoration: underline;
    text-decoration-color: black;
    text-underline-offset: 3px;
}

.right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-start {
    background: black;
    color: white;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
      border-radius 0.25s ease,
      padding 0.25s ease,
      gap 0.3s ease;
    text-decoration: none;
}

.btn-start .arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.3s ease;
}

.btn-start .text {
    transition: 0.3s ease;
}

.btn-start:hover {
    border-radius: 0px;
    padding-left: 25px;
}

.btn-start:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.btn-start:hover .text {
    transform: translateX(6px);
}

.user-info {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    cursor: url('../assets/cursors/hand.png'), auto;
    transition: background 0.2s ease;
}

.user-trigger:hover {
    background: rgba(0, 0, 0, 0.08);
}


.user-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-letter {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: #3bd671;
    border-radius: 50%;
    border: 2px solid #fff;
}

.avatar-arrow {
    font-size: 12px;
    color: #444;
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    z-index: 10000;
}

.user-menu.open {
    display: flex;
}

.menu-item {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    font-size: 14px;
    color: #eee;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.menu-item:hover {
    background: #2d2d2d;
}

.menu-item .menu-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.menu-item .menu-icon img {
    max-width: 100%;
    max-height: 100%;
}

.menu-divider {
    height: 1px;
    background: #333;
    margin: 6px 8px;
}

.logout-item {
    color: #ff5f5f !important;
}

.logout-item:hover {
    background: rgba(255, 95, 95, 0.1) !important;
}

.logout-item .menu-icon {
    opacity: 1;
}

.modal-overlay-log {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay-start {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.reset-password {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal {
    background: white;
    width: 380px;
    padding: 40px 35px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.close-btn {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 26px;
}

.modal h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 26px;
}

.google-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border: 1.5px solid #cfcfcf;
    text-decoration: none;
    color: black;
}

.divider {
    text-align: center;
    margin: 18px 0;
    color: #888;
}

.email-input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    background: #ececec;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-bottom: 25px;
}

.dark-input {
    background: #2a2a2c !important;
    color: #e6e6e6;
    border: 1px solid #3a3a3c !important;
    margin-bottom: 0 !important;
}

.dark-input:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.dark-input::placeholder {
    color: #5a5a5a;
}

.email-btn {
    width: 100%;
    background: black;
    color: white;
    border: none;
    padding: 12px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;

    transition:
      padding 0.25s ease,
      border-radius 0.25s ease,
      gap 0.25s ease;
}

.email-btn span.arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.25s ease;
}

.email-btn:hover {
    border-radius: 0;
    padding-left: 22px;
}

.email-btn:hover span.arrow {
    opacity: 1;
    transform: translateX(0);
}

.email-btn:hover span.txt {
    transform: translateX(6px);
    transition: 0.25s ease;
}

.dop-links p{
    font-size: 16px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    color: black;
}

.dop-links a{
    font-size: 16px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    color: rgb(0, 64, 255);
}




.footer {
    background: #000;
    color: #fff;
    padding: 90px 0;
}


.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 96px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 80px;
}

.footer-left {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.footer-subtitle {
    font-size: 14px;
    color: #9b9b9b;
    font-weight: 400;
}


.footer-btn {
    background: black;
    color: white;
    border: 1px solid #fff;
    padding: 14px 26px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
      border-radius 0.25s ease,
      padding 0.25s ease,
      gap 0.3s ease;
    text-decoration: none;
}

.footer-btn .arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.3s ease;
}

.footer-btn .text {
    transition: 0.3s ease;
}

.footer-btn:hover {
    border-radius: 0px;
    padding-left: 25px;
}

.footer-btn:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.footer-btn:hover .text {
    transform: translateX(6px);
}



.footer-columns {
    display: flex;
    gap: 96px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #9b9b9b;
    margin-bottom: 18px;
}

.footer-col a {
    color: #fff;
    text-decoration: none; 
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
}

.footer-col a:hover {
    text-decoration: underline; 
    text-decoration-color: #fff;
    text-underline-offset: 3px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: #2f2f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-btn img {
    width: 24px;
}

.social-btn:hover {
    background: #575757;
    transform: translateY(-4px);
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn .arrow {
    font-size: 12px;
}

.lang-dropdown {
    list-style: none;
    padding: 10px 0;
    margin: 0;

    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    top: auto;

    background: #222;
    border-radius: 8px;
    width: 150px;

    display: none;
    z-index: 1000;
}

.lang-dropdown li {
    padding: 10px 15px;
    color: #fff;
    transition: 0.2s;
}

.lang-dropdown li:hover {
    background: #444;
}

.lang-dropdown.show {
    display: block;
}

#notificationContainer {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-notification {
    background: #1a1a1a;
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid;
    min-width: 320px;
    pointer-events: auto;
}

.custom-notification.success {
    border-left-color: #10b981;
}

.custom-notification.error {
    border-left-color: #ef4444;
}

.custom-notification.info {
    border-left-color: #3b82f6;
}

.custom-notification-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.custom-notification.success .custom-notification-icon {
    color: #10b981;
}

.custom-notification.error .custom-notification-icon {
    color: #ef4444;
}

.custom-notification.info .custom-notification-icon {
    color: #3b82f6;
}

.custom-notification-message {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.custom-notification-close {
    font-size: 20px;
    color: #888;
    transition: color 0.2s;
    flex-shrink: 0;
    padding: 0 4px;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.custom-notification-close:hover {
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.custom-notification.removing {
    animation: slideOut 0.3s ease-out forwards;
}


.hero-section {
    position: relative;
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    padding: 60px 40px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #000;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.hero-btn {
    background: black;
    color: white;
    border: none;
    padding: 18px 34px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition:
      border-radius 0.25s ease,
      padding 0.25s ease,
      gap 0.3s ease;
    text-decoration: none;
}

.hero-btn .text {
    transition: 0.3s ease;
}

.hero-btn .arrow {
    font-size: 22px;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s ease;
    line-height: 1;
}

.hero-btn:hover {
    border-radius: 0px;
    padding-left: 46px;
}

.hero-btn:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.hero-btn:hover .text {
    transform: translateX(10px);
}


.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(180deg);
}
    75% {
        transform: translate(30px, 5px) rotate(270deg);
    }
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    left: 5%;
    opacity: 0.15;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 60%;
    left: 10%;
    opacity: 0.2;
    animation-delay: 2s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 20%;
    right: 15%;
    opacity: 0.18;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    bottom: 15%;
    right: 8%;
    opacity: 0.15;
    animation-delay: 1s;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    top: 45%;
    right: 25%;
    opacity: 0.2;
    animation-delay: 3s;
}

.shape-6 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    bottom: 25%;
    left: 20%;
    opacity: 0.12;
    animation-delay: 5s;
    border-radius: 48% 52% 35% 65% / 59% 50% 50% 41%;
}

.shape-7 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    top: 35%;
    left: 35%;
    opacity: 0.15;
    animation-delay: 2.5s;
}

.shape-8 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    bottom: 40%;
    right: 35%;
    opacity: 0.18;
    animation-delay: 4.5s;
    border-radius: 35% 65% 72% 28% / 36% 55% 45% 64%;
}

.schedule-main {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, sans-serif;

    background: #0f0f10;
    color: #e6e6e6;
    display: flex;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

#landingPage {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

#dashboardPage {
    display: none;
}

.sidebar {
    width: 72px;
    background: #0b0b0c;
    border-right: 1px solid #1e1e1f;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 18px;
}

.sidebar-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1a1a1c;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-window {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.topbar {
    height: 64px;
    border-bottom: 1px solid #1e1e1f;
    display: flex;
    align-items: center;
    padding: 0 24px;
    justify-content: space-between;
    gap: 20px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #b5b5b5;
}

.breadcrumbs span {
    color: #fff;
}

.top-actions {
    display: flex;
    gap: 10px;
}

.top-btn {
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #e6e6e6;
}

.view-tabs {
    display: flex;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #1e1e1f;
}

.view-tab {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #9a9a9a;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.view-tab.active {
    color: #fff;
    font-weight: 500;
}

.view-tab img {
    width: 18px;
    height: 18px;
    display: block;
}


.table-wrapper {
    padding: 24px;
    overflow-y: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.table thead th {
    text-align: left;
    font-size: 12px;
    color: #9a9a9a;
    padding: 10px 8px;
    font-weight: 500;
}

.table tbody tr {
    height: 44px;
    transition: background 0.15s;
}

.table tbody tr:hover {
    background: #161618;
}

.table td {
    padding: 8px;
    font-size: 14px;
    border-bottom: 1px solid #1e1e1f;
}

.table td:nth-child(2),
.table td:nth-child(3),
.table td:nth-child(4),
.table td:nth-child(6) {
    width: auto;
}

.group-row td {
    padding: 16px 8px 8px;
    font-size: 13px;
    color: #9a9a9a;
    border-bottom: none;
}

.group-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.group-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3b82f6;
}

.name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #374151;
}

.check.checked {
  background: #22c55e;
  border-color: #22c55e;
}

.status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status:hover {
    outline: 1px solid rgb(139, 139, 139);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-todo { background: #6b7280; }
.dot-progress { background: #3b82f6; }
.dot-done { background: #22c55e; }

.status.todo {
  background: #2a2a2a;
  color: #9ca3af;
}

.status.progress {
  background: #1e3a8a;
  color: #93c5fd;
}

.status.done {
  background: #14532d;
  color: #86efac;
}

.status-menu {
  position: absolute;
  background: #111;
  color: white;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 6px;
  width: 180px;
  z-index: 1000;
}

.status-item {
  padding: 8px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: url('../../assets/cursors/hand.png'), auto;
}

.status-item:hover {
  background: #1f1f1f;
}

.task-status-dot {
  width: 10px;
  height: 10px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.type-task {
  border-radius: 50%;
}

.type-milestone {
  transform: rotate(45deg);
}

.type-form {
  border-radius: 3px;
}

.type-meeting {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.dot-done { color: #22c55e; }
.dot-progress { color: #3b82f6; }
.dot-todo { color: #9ca3af; }

.icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #2a2a2c;
  display: flex;
  align-items: center;
  justify-content: center;
}


.add-task-row {
    background: transparent;
}

.add-task-row td {
    padding: 12px 8px;
    vertical-align: middle;
}

.add-task-row td:last-child {
    white-space: nowrap;
}

.add-task-row .name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-task-row .task-name-input {
    background: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    width: 100%;
}

.add-task-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 14px;
  padding: 6px 4px;
}

.add-task-btn:hover {
  color: #fff;
}

.add-task-input {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #0b0b0b;
  border: 1px solid #1f1f1f;
  border-radius: 12px;

  padding: 10px 12px;
}

.task-name-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;

  color: #e5e7eb;
  font-size: 14px;
}

.task-name-input::placeholder {
  color: #6b7280;
}

.actions {
    white-space: nowrap;
}

.actions button {
  background: #0f172a;
  border: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
}

.actions button:hover {
  color: #fff;
  border-color: #374151;
}

.add-task-actions {
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 8px;
}


.task-save {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 13px;
}

.task-save:hover{
    opacity: 0.7;
}

.task-cancel {
  background: none;
  border: none;
  padding: 0 6px;

  font-size: 13px;
  color: #9ca3af;
  opacity: 0.7;
}

.task-cancel:hover {
  opacity: 1;
}

.add-task-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid #1f1f1f;
  background: #0b0b0b;

  display: flex;
  align-items: center;
  justify-content: center;
}

.add-task-icon img {
  width: 24px;
  height: 24px;
  opacity: 1;
}


.icon-cell {
    width: 32px;
    height: 32px;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.icon-cell:hover {
    outline: 1px solid rgb(139, 139, 139);
}

.icon-cell.priority {
    outline: 1px solid blue;
}

.icon-cell img {
  width: 24px;
  height: 24px;
}

.task-type-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.task-type-label {
  font-size: 12px;
  color: #d1d5db;
  white-space: nowrap;
}

.task-type-icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: currentColor;
}

.task-type-icon.type-task {
  border-radius: 50%;
}

.task-type-icon.type-milestone {
  transform: rotate(45deg);
}

.task-type-icon.type-form {
  border-radius: 3px;
}

.task-type-icon.type-meeting {
  width: 12px;
  height: 6px;
  border-radius: 2px;
}

.status-done    { color: #22c55e; }
.status-progress { color: #3b82f6; }
.status-todo    { color: #9ca3af; }

.task-type-menu {
  position: absolute;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2000;
}

.task-type-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  padding: 6px 8px;
}

.task-type-menu button:hover {
  background: #1f1f1f;
}

.task-type-sub-menu {
  background: #1e1e1e !important;
  border: 1px solid #333 !important;
  min-width: 150px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.task-type-sub-menu .task-type-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.task-type-sub-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  padding: 8px 12px;
  width: 100%;
  text-align: left;
}

.task-type-sub-menu-btn:hover {
  background-color: #333 !important;
  color: #fff;
}

.priority-menu {
  position: absolute;
  background: #111;
  color: white;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2000;
}

.priority-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.priority-label {
  font-size: 12px;
  color: #cfcfcf;
  white-space: nowrap;
}

.priority-menu button {
  min-width: 140px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: transparent;
  border: none;

  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;

  color: #eaeaea;
  font-size: 13px;
}

.priority-menu button:hover {
  background: #1f1f1f;
}

.priority-menu img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.priority-btn img {
    width: 24px;
    height: 24px;
}


.sidebar {
    justify-content: space-between;
}

.sidebar-top,
.sidebar-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.sidebar-toggle {
    color: #aaa;
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #aaa;
}

.sidebar-item span {
    font-size: 9px;
}

.sidebar-item:hover {
    color: #fff;
}

.sidebar .icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #1a1a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    position: relative;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.sidebar .icon img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.sidebar-item.active .icon {
    background: radial-gradient(circle at center, #515151, #000000);
}

.sidebar-item:hover .icon img {
    opacity: 1;
}

.sidebar-item.active .icon img {
    opacity: 1;
}

#home.active .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: conic-gradient(
        #3b82f6,
        #8b5cf6,
        #ec4899,
        #f97316,
        #6c6c6c,
        #3b82f6
    );

    -webkit-mask: radial-gradient(circle, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.9) 30%, 
        rgba(0,0,0,0.4) 60%, 
        rgba(0,0,0,0) 90%
    );
    
    mask: radial-gradient(circle, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.9) 30%, 
        rgba(0,0,0,0.4) 60%, 
        rgba(0,0,0,0) 90%
    );
}

#planner.active .icon {
    background: radial-gradient(circle at center, #a90000, #000000);
}

#teams.active .icon {
    background: radial-gradient(circle at center, #1732bb, #000000);
}

#dashboard.active .icon {
    background: radial-gradient(circle at center, #710083, #000000);
}

.sidebar-item.active span {
    color: #fff;
}

.icon.glow {
    box-shadow: 0 0 20px rgba(99,102,241,0.8);
}

.icon.badge .dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
}



.dashboard-view {
    flex: 1;
    display: none;
    flex-direction: column;
    background: #0f0f10;
    overflow-y: auto;
    padding: 32px;
}

.dashboard-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: 32px;
}

.dashboard-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #e6e6e6;
    margin: 0 0 8px 0;
}

.dashboard-subtitle {
    font-size: 16px;
    color: #9a9a9a;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: #3a3a3c;
}

.stat-card:hover .stat-icon img {
    opacity: 0.9;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.stat-icon img {
    width: 64px;
    height: 64px;
    opacity: 0.8;
    transition: all 0.3s;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #e6e6e6;
    margin: 0 0 4px 0;
}

.stat-label {
    font-size: 14px;
    color: #9a9a9a;
    margin: 0;
}

.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.chart-card {
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    border-radius: 16px;
    padding: 24px;
}

.chart-title {
    font-size: 20px;
    font-weight: 600;
    color: #e6e6e6;
    margin: 0 0 24px 0;
}

.progress-chart {
    width: 100%;
}

.progress-bar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #b5b5b5;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #2a2a2c;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.6s ease;
}

.todo-fill {
    background: linear-gradient(90deg, #6b7280 0%, #9ca3af 100%);
}

.progress-fill-bar {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.done-fill {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.blocked-fill {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.priority-chart {
    width: 100%;
}

.priority-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.priority-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #2a2a2c;
    border-radius: 12px;
    transition: all 0.2s;
}

.priority-item:hover {
    background: #3a3a3c;
    transform: translateX(4px);
}

.priority-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #e6e6e6;
}

.priority-badge.urgent {
    color: #c1c1c1;
}

.priority-badge.high {
    color: #c1c1c1;
}

.priority-badge.medium {
    color: #c1c1c1;
}

.priority-badge.low {
    color: #c1c1c1;
}

.priority-count {
    font-size: 24px;
    font-weight: 700;
    color: #e6e6e6;
}

.recent-activity {
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    border-radius: 16px;
    padding: 24px;
}

.activity-title {
    font-size: 20px;
    font-weight: 600;
    color: #e6e6e6;
    margin: 0 0 24px 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #2a2a2c;
    border-radius: 12px;
    transition: all 0.2s;
}

.activity-item:hover {
    background: #3a3a3c;
    transform: translateX(4px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.activity-icon img {
    width: 32px;
    height: 32px;
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-text {
    font-size: 15px;
    color: #e6e6e6;
    margin: 0;
}

.activity-time {
    font-size: 13px;
    color: #7a7a7a;
}

.context-menu {
  position: absolute;
  background: #1e1e1e;
  border: 1px solid #333;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 10000;
  min-width: 220px;
  color: #eee;
  font-family: sans-serif;
}

.menu-item {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: background 0.2s;
  position: relative;
  cursor: url('../../assets/cursors/hand.png'), auto;
}

.menu-item:hover {
  background-color: #2d2d2d;
}

.menu-item .menu-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item .menu-text {
  flex-grow: 1;
}

.menu-item .arrow-icon {
  font-size: 10px;
  opacity: 0.5;
}

.menu-item.delete-item {
  color: #ff5f5f;
  border-top: 1px solid #333;
  margin-top: 5px;
  padding-top: 12px;
}

.menu-item.delete-item:hover {
  background-color: #351a1a;
}

.rename-input {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 14px;
  width: 80%;
  outline: none;
}


.calendar-view {
    flex: 1;
    display: flex;
    gap: 24px;
    padding: 24px;
    overflow-y: auto;
}

.calendar-container {
    flex: 2;
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-title {
    font-size: 24px;
    font-weight: 600;
    color: #e6e6e6;
    margin: 0;
}

.calendar-nav-btn {
    background: #2a2a2c;
    border: none;
    color: #e6e6e6;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #3a3a3c;
    transform: scale(1.05);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.weekday {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #9a9a9a;
    padding: 12px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    color: #e6e6e6;
    background: #0f0f10;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.calendar-day:hover {
    background: #2a2a2c;
    transform: scale(1.05);
}

.calendar-day.prev-month,
.calendar-day.next-month {
    color: #5a5a5a;
}

.calendar-day.today {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: white;
    font-weight: 600;
}

.calendar-day.selected {
    background: #6366f1;
    color: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.calendar-day.today.selected {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5);
}

.task-count-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-date-tasks {
    flex: 1;
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 180px);
}

.tasks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tasks-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e6e6e6;
    margin: 0;
}

.add-task-for-date-btn {
    background: #6366f1;
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.add-task-for-date-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.date-tasks-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #9a9a9a;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 15px;
    margin: 0;
}

.date-task-card {
    background: #2a2a2c;
    border: 1px solid #3a3a3c;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s;
}

.date-task-card:hover {
    background: #3a3a3c;
    transform: translateX(4px);
}

.task-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.task-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.task-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #e6e6e6;
}

.task-delete-btn {
    background: transparent;
    border: none;
    color: #9a9a9a;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.task-delete-btn:hover {
    background: #ef4444;
    color: white;
}

.task-card-description {
    font-size: 14px;
    color: #b5b5b5;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.task-card-footer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.priority-badge-small {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.priority-badge-small.urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.priority-badge-small.high {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.priority-badge-small.normal {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.priority-badge-small.low {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.modal-overlay-date-task {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.date-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.date-icon {
    font-size: 24px;
}

.date-display span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.task-description {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.task-options {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.priority-select {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.priority-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: #374151;
}

.priority-option:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.priority-option.active {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.priority-option img {
    width: 20px;
    height: 20px;
}

.task-date-input {
    background: #1a1a1c;
    border: 1px solid #2a2a2c;
    border-radius: 6px;
    color: #e6e6e6;
    padding: 4px 8px;
    font-size: 12px;
    height: 26px;
    outline: none;
}

.task-date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.task-date-input:focus {
    border-color: #6366f1;
}

@media (max-width: 1024px) {
    .calendar-view {
        flex-direction: column;
    }
    
    .calendar-container,
    .selected-date-tasks {
        flex: 1;
        max-height: none;
    }
}

.modal-overlay-profile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.profile-modal {
    max-width: 500px;
    width: 90%;
}

.dark-modal {
    background: #1a1a1c !important;
    border: 1px solid #2a2a2c;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.dark-close {
    color: #e6e6e6;
    font-size: 24px;
    transition: color 0.2s;
}

.dark-close:hover {
    color: #fff;
}

.dark-title {
    color: #e6e6e6 !important;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2c;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.profile-letter {
    text-transform: uppercase;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #e6e6e6;
    margin: 0 0 4px 0;
}

.profile-email {
    font-size: 14px;
    color: #9a9a9a;
    margin: 0;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.profile-stat {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s;
}

.profile-stat:hover {
    transform: translateY(-4px);
}

.profile-stat:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.profile-stat:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.profile-stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.profile-stat-label {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 500;
}

.profile-section {
    margin-bottom: 20px;
}

.profile-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9a9a9a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.profile-readonly {
    background: #2a2a2c;
    padding: 12px 16px;
    border-radius: 10px;
    color: #b5b5b5;
    font-size: 14px;
    border: 1px solid #3a3a3c;
}

.language-dropdown {
    position: relative;
    width: 100%;
}

.language-dropdown-btn {
    width: 100%;
    background: #2a2a2c;
    border: 1px solid #3a3a3c;
    padding: 14px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: url('../../assets/cursors/normal.png'), auto;
    color: #e6e6e6;
    font-size: 15px;
}

.language-dropdown-btn:hover {
    background: #3a3a3c;
    border-color: #667eea;
}

.language-dropdown-btn.open {
    border-color: #667eea;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selected-lang-flag {
    font-size: 24px;
}

.selected-lang-name {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #9a9a9a;
}

.language-dropdown-btn.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a2a2c;
    border: 1px solid #667eea;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.language-dropdown-menu.open {
    max-height: 200px;
    opacity: 1;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: url('../../assets/cursors/normal.png'), auto;
    transition: background 0.2s ease;
    color: #e6e6e6;
    font-size: 15px;
}

.language-option:hover {
    background: #3a3a3c;
}

.language-option:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.language-option .lang-flag {
    font-size: 24px;
}

.language-option .lang-name {
    flex: 1;
    font-weight: 500;
}

.dark-input {
    background: #2a2a2c !important;
    border: 1px solid #3a3a3c !important;
    color: #e6e6e6 !important;
}

.dark-input:focus {
    border-color: #667eea !important;
    outline: none;
}

.profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.profile-btn {
    flex: 1;
    background: #2a2a2c;
    color: #e6e6e6;
    border: 1px solid #3a3a3c;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.profile-btn .arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.3s ease;
}

.profile-btn:hover {
    background: #3a3a3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.profile-btn:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.profile-btn:hover .txt {
    transform: translateX(6px);
    transition: 0.3s ease;
}

.profile-btn.save-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.profile-btn.save-btn:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}



:root {
  --main-gradient: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f97316, #3b82f6);
  --anim-speed: 4s;
}

.ai-assistant {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #ececf1;
    height: 100vh;
    background-color: #0f0f10;
    overflow: hidden;
}

.ai-header {
    padding: 32px 40px 20px 40px;
    border-bottom: 1px solid #353535;
}

.ai-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.ai-icon {
    width: 32px;
    height: 32px;
}

.ai-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #e6e6e6;
    margin: 0;
}

.ai-subtitle {
    font-size: 15px;
    color: #9a9a9a;
    margin: 0;
}

.ai-chat {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.msg {
  padding: 12px 20px;
  border-radius: 25px;
  max-width: 80%;
  line-height: 1.5;
  font-size: 16px;
  word-wrap: break-word;
  white-space: pre-wrap;
  color: #ffffff;
  position: relative;
  margin-bottom: 5px;
}

.msg.typing-wrapper {
  padding: 10px 15px;
  max-width: fit-content;
  min-width: 0;
}

.user {
  align-self: flex-end;
  justify-content: flex-end;
  background-color: transparent;
}

.ai .text-content *:last-child {
  margin-bottom: 0 !important;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sync-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.ai {
  align-self: flex-start;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.text-content {
    white-space: normal; 
}

.text-content p {
  margin-bottom: 0.5em;
  display: block;
  white-space: pre-wrap;
}

.text-content p:last-child {
    margin-bottom: 0 !important;
}

.ai-message {
    display: flex;
    align-items: flex-start;
    width: 100%;
    animation: slideInMessage 0.3s ease-out;
}

.ai-message-bot {
    flex-direction: row;
    justify-content: flex-start;
}

.ai-message-user {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.animated-border-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto 30px auto;
  border-radius: 35px;
  padding: 5px;
  
  background: var(--main-gradient);
  background-size: 200% auto;
  animation: sync-flow var(--anim-speed) linear infinite;
  
  display: flex;
  justify-content: center;
  align-items: center;
}


.input {
  width: 100%;
  background-color: #1e1e1e;
  border-radius: 30px;
  padding: 8px 10px 8px 20px;
  display: flex;
  align-items: center;

  border: 2px solid transparent;
  background-image: linear-gradient(#1e1e1e, #1e1e1e), var(--main-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 200% auto;
  animation: sync-flow var(--anim-speed) linear infinite;
    
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#message {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    outline: none;
    padding: 10px 0;
    caret-color: #3b82f6;
    min-height: 24px;
    max-height: 200px;
    line-height: 1.4;
    color: #ffffff;
    overflow-y: auto;
    resize: none;
}

.text-content h2 { margin: 10px 0; font-size: 1.2em; color: #3b82f6; }
.text-content ul { margin-left: 20px; }

#message::placeholder {
  -webkit-text-fill-color: #4b5563;
  font-weight: 0;
}

#message::-webkit-scrollbar,
.messages-container::-webkit-scrollbar {
    width: 6px;
}

#message::-webkit-scrollbar-track,
.messages-container::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

#message::-webkit-scrollbar-thumb,
.messages-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
    border: 1px solid #1e1e1e;
    transition: background 0.3s;
}

#message::-webkit-scrollbar-thumb:hover,
.messages-container::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

#send {
  background-image: var(--main-gradient);
  background-size: 200% auto;
  animation: sync-flow var(--anim-speed) linear infinite;

  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;

  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

#send:hover {
  transform: scale(1.1); 
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

#send:active {
  transform: scale(0.95);
}

#send svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
}

#send svg rect {
    fill: white!important; 
    stroke: white!important;
}

.ai-message-bot .ai-bubble {
    background: #1a1a1c;
    color: #e6e6e6;
    border-bottom-left-radius: 4px;
}

.ai-message-user .ai-bubble {
    background: #6366f1;
    color: white;
    border-bottom-right-radius: 4px;
    margin-right: 12px;
}

.ai-chat::-webkit-scrollbar { 
    width: 8px; 
}

.ai-chat::-webkit-scrollbar-track { 
    background: transparent; 
}

.ai-chat::-webkit-scrollbar-thumb { 
    background-color: #333; 
    border-radius: 10px; 
}

.ai-chat::-webkit-scrollbar-thumb:hover {
    background-color: #3b82f6;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.ai-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 4px;
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ai-bubble {
    position: relative;
    max-width: 80%;
    padding: 16px 20px;
    border-radius: 16px;
    background: #262626;
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.6;
}

.ai-bubble p {
    margin: 0 0 12px 0;
}

.ai-bubble p:last-child {
    margin-bottom: 0;
}

.ai-bubble ul {
    margin: 12px 0;
    padding-left: 20px;
}

.ai-bubble li {
    margin: 8px 0;
}

.ai-bubble strong {
    color: #6ee7ff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: max-content;
    min-width: 300px;
    white-space: nowrap;
}

.thinking-text {
    white-space: nowrap;
    font-size: 14px;
    color: #888;
}

.typing-indicator span {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
}

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.ai:has(.typing-indicator) {
    max-width: 80%;
    width: fit-content;
}

.disclaimer {
    display: none;
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    margin-top: -20px;
    transition: opacity 0.6s ease;
}

@media (min-width: 768px) {
    .disclaimer {
        display: block;
    }
}


.quick-date-picker {
    position: absolute;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    padding: 16px;
    z-index: 11000;
    width: 260px;
    font-family: 'Inter', -apple-system, sans-serif;
    user-select: none;
}

.quick-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

#quickMonthTitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.quick-calendar-header button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-calendar-header button:hover {
    background: #333333;
}

.quick-calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
    padding: 0 2px; 
}

.quick-calendar-grid-header span {
    color: #7c7c7c;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

#quickCalendarGrid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px;
    min-height: 150px;
    cursor: url('../../assets/cursors/hand.png'), auto;
}

.quick-day {
    color: #ffffff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.15s ease;
    position: relative;
    z-index: 1;
}

.quick-day:hover:not(.other-month) {
    background-color: #333333;
}

.quick-day.other-month {
    color: #555555 !important;
}

.quick-day.today {
    color: #ffffff !important;
    font-weight: 700;
}

.quick-day.today::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #ff4d4d;
    border-radius: 50%;
    z-index: -1;
}

.quick-day.selected {
    background-color: #4f46e5 !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 6px !important;
}

.quick-day.selected.today::before {
    display: none; 
}

.date-text {
    background: rgba(79, 70, 229, 0.15);
    color: #a5b4fc;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(79, 70, 229, 0.3);
    white-space: nowrap;
}

.quick-calendar-footer {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: center;
}

.clear-date-btn {
    background: transparent;
    border: none;
    color: #ff4d4d;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.clear-date-btn:hover {
    background: rgba(255, 77, 77, 0.1);
}

.clear-date-btn .icon {
    font-size: 10px;
}

:root {
    --primary-gradient: linear-gradient(90deg, #0055ff 15%, #b347ff 40%, #ff00b3 50%, #ff7b00 80%);
}

.about-body { margin: 0; padding: 0; font-family: 'Inter', sans-serif; background: #fff; overflow-x: hidden; }

.about-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.about-title {
    position: absolute;
    top: 36%; 
    width: 100%;
    text-align: center;
    font-size: clamp(50px, 10vw, 130px); 
    font-weight: 600; 
    letter-spacing: -0.04em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0; 
    margin: 0;
}

.about-scene {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.about-mountain-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 10;
    line-height: 0;
}

.about-mountain-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-flag-container {
    position: absolute;
    top: 0%; 
    left: 48.3%;
    z-index: 11;
    perspective: 1000px;
}

.about-flag-pole {
    width: 3px;
    height: 105px;
    background: #2b2b2b;
}

.about-flag-cloth {
    position: absolute;
    top: 0;
    left: 3px;
    width: 135px; 
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    background: #fff;
    background-image: linear-gradient(90deg, #fff 0%, rgba(0,0,0,0.05) 25%, #fff 50%, rgba(0,0,0,0.08) 75%, #fff 100%);
    background-size: 200% 100%;
    border-radius: 0 4px 4px 0;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.05);
    transform-origin: left center;
    animation: flagWavePhysical 3s ease-in-out infinite;
}

@keyframes flagWavePhysical {
    0%, 100% { transform: rotateY(0deg) skewY(0deg); background-position: 0% 0; }
    50% { transform: rotateY(-20deg) skewY(-3deg); background-position: 100% 0; }
}

.clouds-cluster {
    position: absolute;
    bottom: -210px;
    left: 50%;
    transform: translateX(-50%);
    width: 160%; 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0; 
    z-index: 15;
}

.cloud {
    width: 600px;
    margin: -40px -180px; 
    opacity: 0.98;
    filter: blur(12px);
    flex-shrink: 0;
    animation: cloudBreath 7s ease-in-out infinite alternate;
}

.cloud:nth-child(even) {
    animation-delay: -3s;
    transform: scale(1.1);
}

.cloud:nth-child(3n) {
    animation-delay: -5s;
    opacity: 0.8;
}

@keyframes cloudBreath {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-15px) scale(1.03); }
}

.intro-section {
    background: #fff;
    padding: 80px 20px 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.intro-text-wrapper {
    max-width: 520px;
    text-align: left;
}

.intro-text-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.intro-text-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.privacy-intro-section {
    background: #fff;
    padding: 80px 20px 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.privacy-intro-text-wrapper {
    max-width: 720px;
    text-align: left;
}

.privacy-intro-text-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.privacy-intro-text-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.privacy-intro-text-wrapper p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.effective-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 20px;
}

.privacy-intro-text-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-intro-text-wrapper li {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.privacy-intro-text-wrapper li::before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-intro-text-wrapper li strong {
    color: #1a1a1a;
    font-weight: 700;
}

.privacy-intro-text-wrapper a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-bottom 0.2s ease;
}

.privacy-intro-text-wrapper a:hover {
    border-bottom: 1px solid #1a1a1a;
}
