:root{

  --accent:#eb6835;
  --accent-2:#6c5ce7;

  --body-bg:white;
  --card-bg:white;

  
  --card-border: rgba(255,255,255,.25);

  --text-primary:#fff;
  --text-secondary:#a1a1aa;

  --radius-md:24px;
  --radius-lg:34px;

  --transition:.3s ease;
}

/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{

  background:
    linear-gradient(
      135deg,
      #0f1117,
      #111827
    );

  color:white;

  font-family:"DM Sans",sans-serif;
}

/* SIDEBAR */

.sidebar{

  position:fixed;

  top:0;
  left:0;

  width:240px;
  height:100vh;

  padding:28px 20px;

  background:#12141b;

  border-right:1px solid var(--card-border);
}

.sidebar-brand{

  display:flex;
  align-items:center;

  gap:12px;

  margin-bottom:40px;
}

.brand-icon{

  width:44px;
  height:44px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    );
}

.brand-text{

  font-size:28px;
  font-weight:800;

  font-family:"Syne",sans-serif;
}

.sidebar-nav ul{
  list-style:none;
}

.sidebar-nav li{
  margin-bottom:10px;
}

.sidebar-nav a{

  display:flex;
  align-items:center;

  gap:14px;

  padding:14px 18px;

  border-radius:14px;

  text-decoration:none;

  color:#a1a1aa;

  transition:var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav .active a{

  background:rgba(235,104,53,.12);

  color:white;
}

/* NAVBAR */

.navbar{

  margin-left:240px;

  display:flex;
  justify-content:space-between;

  padding:20px 42px;

  border-bottom:1px solid var(--card-border);
}

.logo{

  font-size:30px;
  font-family:"Syne",sans-serif;

  font-weight:800;
}

.search-bar{

  width:320px;

  display:flex;
  align-items:center;

  gap:10px;

  padding:12px 18px;

  border-radius:999px;

  background:var(--card-bg);

  border:1px solid var(--card-border);
}

.search-bar input{

  border:none;
  outline:none;

  background:transparent;

  color:white;

  width:100%;
}

/* MAIN */

.main-home{

  margin-left:240px;

  padding:42px;
}

/* HERO */

.page-hero{

  display:flex;
  justify-content:space-between;

  gap:40px;

  padding:50px;

  border-radius:var(--radius-lg);

  background:var(--card-bg);

  border:1px solid var(--card-border);

  margin-bottom:32px;
}

.page-title{

  font-size:48px;

  font-family:"Syne",sans-serif;

  margin-bottom:16px;
}

.page-desc{

  max-width:540px;

  line-height:1.8;

  color:var(--text-secondary);

  margin-bottom:24px;
}

.breadcrumb{

  display:flex;
  align-items:center;

  gap:8px;

  margin-bottom:18px;

  font-size:13px;
}

.breadcrumb a{

  color:var(--accent);

  text-decoration:none;
}

.page-meta{

  display:flex;
  gap:10px;

  flex-wrap:wrap;
}

.meta-badge{

  padding:8px 14px;

  border-radius:999px;

  background:rgba(235,104,53,.08);

  border:1px solid rgba(235,104,53,.18);

  color:var(--accent);

  font-size:12px;
  font-weight:700;
}

/* HERO CALENDAR */

.hero-calendar{

  width:280px;

  background:white;
  border: 1px solid blue;
  border-radius:28px;

  padding:24px;
}

.calendar-top{

  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:22px;
}

.calendar-top button{

  width:34px;
  height:34px;

  border:none;

  border-radius:50%;

  background:rgba(255,255,255,.08);

  color:white;

  cursor:pointer;
}

.calendar-days,
.calendar-grid{

  display:grid;

  grid-template-columns:repeat(7,1fr);

  gap:10px;

  text-align:center;
}

.calendar-days{
  margin-bottom:14px;
}

.calendar-days span{
  color:#8f96a3;
}

.calendar-grid span{

  padding:10px;

  border-radius:12px;

  transition:var(--transition);
}

.active-day{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    );
  
}

/* FILTER */

.filter-bar{

  display:flex;

  gap:12px;

  margin-bottom:26px;

  flex-wrap:wrap;
}

.filter-btn{

  border:none;

  padding:10px 18px;

  border-radius:999px;

  background:var(--card-bg);

  border:1px solid var(--card-border);

  color:#a1a1aa;

  font-size:13px;
  font-weight:700;

  cursor:pointer;

  transition:var(--transition);
}

.filter-btn.active,
.filter-btn:hover{

  background:var(--accent);

  color:white;
}

/* GRID */

.calendar-grid-layout{

  display:grid;

  grid-template-columns:
    repeat(auto-fill,minmax(340px,1fr));

  gap:22px;
}

/* CARD */

.component-card{

  background:var(--card-bg);

  border:1px solid black ;

  border-radius:var(--radius-md);

  padding:24px;

  transition:var(--transition);
}

.component-card:hover{

  transform:translateY(-4px);

  border-color:rgba(235,104,53,.24);
}

.card-top{

  display:flex;
  justify-content:space-between;

  margin-bottom:18px;
}

.card-label{

  font-size:16px;
  font-family:"Syne",sans-serif;

  font-weight:700;
}

.card-tag{

  padding:4px 10px;

  border-radius:999px;

  font-size:11px;
  font-weight:700;
}

.tag-popular{
  background:rgba(116,185,255,.15);
  color:#74b9ff;
}

.tag-trending{
  background:rgba(253,121,168,.15);
  color:#fd79a8;
}

.tag-modern{
  background:rgba(108,92,231,.15);
  color:#a29bfe;
}

.tag-essential{
  background:rgba(253,203,110,.15);
  color:#fdcb6e;
}

.card-preview{

  min-height:220px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:20px ;

  background:orange;

  padding:24px;

  margin-bottom:18px;
}

.dark-preview{
  background:black;
}

.card-desc{

  color:var(--text-secondary);

  line-height:1.7;

  font-size:13px;
}

/* MINI CALENDAR */

.mini-calendar{

  width:100%;

  background:white;

  border-radius:22px;

  padding:22px;
}

.mini-header{

  display:flex;
  justify-content:space-between;

  margin-bottom:18px;
}

.mini-days{

  display:flex;
  gap:10px;
}

.mini-days span{

  width:42px;
  height:42px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:white;
}

.selected{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    ) !important;
}

/* EVENT */

.event-card{

  width:100%;

  background:white;

  border-radius:22px;

  padding:26px;
}

.event-date{

  display:inline-block;

  padding:8px 14px;

  border-radius:999px;

  background:white;

  color:var(--accent);

  font-size:12px;
  font-weight:700;

  margin-bottom:16px;
}

.event-card h3{
  margin-bottom:8px;
}

/* BOOKING */

.booking-calendar{

  width:100%;

  text-align:center;
}

.booking-calendar h4{
  margin-bottom:20px;
}

.booking-days{

  display:flex;
  justify-content:center;

  gap:12px;
}

.booking-days button{

  width:52px;
  height:52px;

  border:none;

  border-radius:16px;

  background:#222632;

  color:white;

  cursor:pointer;

  transition:var(--transition);
}

.active-book{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    ) !important;
}
.focus-timer {
  text-align: center;
}

.timer-display {
  font-size: 32px;
  font-weight: 800;
  margin: 20px 0;
  color: var(--accent);
}

.start-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.start-btn:hover {
  background: var(--accent-2);
}
.goal-tracker {
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  margin: 18px 0;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.daily-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: palevioletred;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.check-item:hover {
  background: palevioletred;
}

.check-item input {
  accent-color: var(--accent);
}

.habit-tracker {
  text-align: center;
}

.habit-streak {
  font-size: 28px;
  font-weight: 800;
  margin: 16px 0;
  color: var(--accent);
}

.streak-label {
  color: var(--text-secondary);
  font-size: 14px;
}


/* TIMELINE */

.timeline{

  width:100%;

  display:flex;
  flex-direction:column;

  gap:24px;
}

.timeline-item{

  display:flex;

  gap:14px;
  
}

.dot{

  width:14px;
  height:14px;

  border-radius:50%;

  background:var(--accent);

  margin-top:6px;
}
.streak-tracker {
  text-align: center;
}

.streak-count {
  font-size: 28px;
  font-weight: 800;
  margin: 16px 0;
  color: var(--accent);
}

.streak-label {
  color: var(--text-secondary);
  font-size: 14px;
}


/* PRODUCTIVITY */

.productivity-widget{

  text-align:center;
}

.progress-circle{

  width:120px;
  height:120px;

  border-radius:50%;

  margin:24px auto 0;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    conic-gradient(
      var(--accent) 78%,
      rgba(255,255,255,.08) 0
    );
}

.progress-circle span{

  width:88px;
  height:88px;

  border-radius:50%;

  background:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  font-weight:800;
}

/* REMINDER */

.reminder-card{

  text-align:center;
}

.reminder-icon{

  width:70px;
  height:70px;

  border-radius:22px;

  margin:auto auto 18px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2)
    );

  font-size:26px;
}

.reminder-card h4{
  margin-bottom:10px;
}

.reminder-card p{
  color:var(--text-secondary);
}

/* RESPONSIVE */

@media(max-width:900px){

  .sidebar{
    display:none;
  }

  .navbar,
  .main-home{
    margin-left:0;
  }

  .page-hero{
    flex-direction:column;
  }

}

@media(max-width:768px){

  .navbar{
    padding:18px 20px;
  }

  .main-home{
    padding:24px;
  }

  .page-hero{
    padding:32px 24px;
  }

  .page-title{
    font-size:38px;
  }

  .calendar-grid-layout{
    grid-template-columns:1fr;
  }

}



/* =========================================================
   NAVBAR
========================================================= */

.calendar-navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 40px;

  background:rgba(15,23,42,0.9);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,0.08);

  z-index:1000;
}

.calendar-logo{
  font-size:1.5rem;
  font-weight:800;
  font-family:"Syne",sans-serif;
}

.calendar-nav{
  display:flex;
  gap:18px;
}

.calendar-nav a{
  text-decoration:none;
  color:#cbd5e1;
  padding:10px 16px;
  border-radius:12px;
  transition:0.3s ease;
}

.calendar-nav a:hover,
.calendar-nav a.active{
  background:#8b5cf6;
  color:#fff;
}

/* =========================================================
   HERO
========================================================= */

.calendar-hero{
  padding-top:140px;
  padding-bottom:70px;
  text-align:center;
  max-width:900px;
  margin:auto;
}

.hero-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#1e293b;
  margin-bottom:24px;
  color:#cbd5e1;
}

.hero-title{
  font-size:4rem;
  line-height:1.1;
  font-weight:800;
  margin-bottom:24px;
  font-family:"Syne",sans-serif;
}

.hero-title span{
  display:block;
  color:#8b5cf6;
}

.hero-desc{
  color:#94a3b8;
  font-size:1.1rem;
  max-width:650px;
  margin:auto;
}

/* =========================================================
   MAIN
========================================================= */

.calendar-container{
  width:min(1400px,92%);
  margin:auto;
  padding-bottom:120px;
}

.section-header{
  margin-bottom:30px;
}

.section-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#1e293b;
  color:#8b5cf6;
  margin-bottom:14px;
  font-size:0.9rem;
}

.section-header h2{
  font-size:2rem;
  font-family:"Syne",sans-serif;
}

/* =========================================================
   GRID
========================================================= */

.calendar-grid,
.analytics-grid,
.insights-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}

.calendar-card,
.analytics-card,
.insight-card{
  background:white;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:24px;
  transition:0.3s ease;
}

.calendar-card:hover,
.analytics-card:hover,
.insight-card:hover{
  transform:translateY(-6px);
  border-color:#8b5cf6;
}

/* =========================================================
   CALENDAR
========================================================= */

.calendar-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.calendar-month{
  color:#94a3b8;
  margin-bottom:6px;
}

.calendar-actions{
  display:flex;
  gap:10px;
}

.calendar-actions button{
  width:40px;
  height:40px;
  border:none;
  border-radius:12px;
  background:#1e293b;
  color:#fff;
  cursor:pointer;
}

.calendar-days,
.calendar-dates{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
}

.calendar-days span{
  text-align:center;
  color:#94a3b8;
  font-size:0.9rem;
}

.calendar-dates div{
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#1e293b;
  cursor:pointer;
  transition:0.3s ease;
}

.calendar-dates div:hover{
  background:#8b5cf6;
}

.active-date{
  background:#8b5cf6 !important;
}

.event-date{
  border:2px solid #8b5cf6;
}

/* =========================================================
   EVENT CARD
========================================================= */

.event-card{
  text-align:center;
}

.event-icon{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:20px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#8b5cf6;
  font-size:1.5rem;
}

.event-list{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.event-item{
  background:#1e293b;
  padding:14px;
  border-radius:14px;
}

/* =========================================================
   STATS
========================================================= */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:24px;
}

.stat-box{
  background:#1e293b;
  border-radius:18px;
  padding:20px;
  text-align:center;
}

/* =========================================================
   WEEKLY PLANNER
========================================================= */

.weekly-planner{
  overflow-x:auto;
  display:flex;
  gap:20px;
  margin-top:30px;
}

.time-column{
  display:flex;
  flex-direction:column;
  gap:34px;
  color:#94a3b8;
  min-width:70px;
}

.planner-grid{
  display:grid;
  grid-template-columns:repeat(5,220px);
  gap:20px;
}

.planner-day{
  background:#111827;
  border-radius:22px;
  padding:20px;
}

.day-header{
  margin-bottom:20px;
  font-weight:700;
}

.planner-event{
  padding:14px;
  border-radius:14px;
  margin-bottom:14px;
}

.purple{
  background:#7c3aed;
}

.orange{
  background:#ea580c;
}

.green{
  background:#059669;
}

/* =========================================================
   AGENDA
========================================================= */

.agenda-layout{
  margin-top:30px;
}

.agenda-timeline{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.agenda-item{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.agenda-time{
  min-width:100px;
  color:#94a3b8;
  padding-top:18px;
}

.agenda-card{
  flex:1;
  background:#111827;
  border-radius:22px;
  padding:24px;
  border-left:5px solid #8b5cf6;
}

.agenda-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:14px;
}

.priority{
  padding:6px 12px;
  border-radius:999px;
  font-size:0.8rem;
}

.priority.high{
  background:#dc2626;
}

.priority.medium{
  background:#d97706;
}

.priority.low{
  background:#059669;
}

/* =========================================================
   MODAL
========================================================= */

.event-modal-overlay{
  position:fixed;
  inset:0;
  background:white;
  display:none;
  z-index:2000;
}

.event-modal{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  width:min(500px,92%);
  background:white;
  border-radius:24px;
  padding:28px;

  z-index:3000;
  display:none;
}

.modal-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.modal-top button{
  border:none;
  background:none;
  color:#fff;
  font-size:1.2rem;
  cursor:pointer;
}

.modal-body textarea{
  width:100%;
  min-height:120px;
  margin-top:20px;
  border:none;
  outline:none;
  resize:none;
  background:white;
  color:black;
  border-radius:16px;
  padding:16px;
}

.modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:14px;
  margin-top:24px;
}

.delete-btn,
.save-btn{
  border:none;
  padding:12px 20px;
  border-radius:14px;
  cursor:pointer;
}

.delete-btn{
  background:#dc2626;
  color:#fff;
}

.save-btn{
  background:#8b5cf6;
  color:#fff;
}

/* =========================================================
   FLOATING BUTTON
========================================================= */

.floating-event-btn{
  position:fixed;
  right:30px;
  bottom:30px;

  display:flex;
  align-items:center;
  gap:12px;

  border:none;
  background:#8b5cf6;
  color:#fff;

  padding:16px 22px;
  border-radius:999px;

  cursor:pointer;

  box-shadow:0 10px 30px rgba(139,92,246,0.4);

  z-index:1000;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  color: #aaa;
  margin-top: 60px;
  clear: both;
  width: calc(100% - var(--sidebar-w)); /* stay beside sidebar */
  margin-left: var(--sidebar-w);        /* push beside sidebar */
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}




.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  padding: 56px 48px 40px;
  max-width: 100%;
}


.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: #d45c28;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 20px 48px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

  .hero-title{
    font-size:3rem;
  }

  .agenda-item{
    flex-direction:column;
  }

  .agenda-time{
    padding-top:0;
  }

}

@media(max-width:768px){

  .calendar-navbar{
    padding:0 20px;
  }

  .calendar-nav{
    display:none;
  }

  .hero-title{
    font-size:2.4rem;
  }

  .calendar-container{
    width:94%;
  }

  .calendar-grid,
  .analytics-grid,
  .insights-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:500px){

  .hero-title{
    font-size:2rem;
  }

  .floating-event-btn span{
    display:none;
  }

  .floating-event-btn{
    width:60px;
    height:60px;
    justify-content:center;
    padding:0;
  }

}

/* =========================================
   PROJECT CALENDAR
========================================= */

.project-calendar{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.project-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.project-top span{
  color:rgba(255,255,255,0.65);
}

.project-top i{
  font-size:1.5rem;
  color:#00d4ff;
}

.project-members{
  display:flex;
  gap:12px;

  margin-bottom:24px;
}

.project-members span{
  width:42px;
  height:42px;

  border-radius:50%;

  display:grid;
  place-items:center;

  font-weight:700;

  background:linear-gradient(
    135deg,
    #7f5cff,
    #00d4ff
  );
}

.project-progress{
  height:10px;

  border-radius:999px;

  overflow:hidden;

  background:rgba(255,255,255,0.08);
}

.project-progress span{
  display:block;

  width:76%;
  height:100%;

  background:linear-gradient(
    90deg,
    #00d4ff,
    #7f5cff
  );
}

/* =========================================
   MEETING BOOKING
========================================= */

.meeting-booking{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.08);
}

.meeting-room{
  margin-bottom:24px;
}

.meeting-room span{
  color:rgba(255,255,255,0.65);
}

.meeting-slots{
  display:flex;
  gap:12px;
}

.meeting-slots button{
  flex:1;

  padding:14px;

  border:none;
  border-radius:14px;

  background:rgba(255,255,255,0.08);

  color:white;

  cursor:pointer;

  transition:0.3s ease;
}

.slot-active{
  background:linear-gradient(
    135deg,
    #7f5cff,
    #00d4ff
  );

  box-shadow:0 10px 25px rgba(0,212,255,0.25);
}

/* =========================================
   EVENT SCHEDULER
========================================= */

.event-scheduler{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);
}

.event-schedule-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.event-schedule-top span{
  color:#00d4ff;
}

.event-session{
  display:flex;
  align-items:center;
  gap:16px;

  padding:14px 0;
}

.session-dot{
  width:16px;
  height:16px;

  border-radius:50%;

  background:#555;
}

.active-session{
  background:#00d4ff;

  box-shadow:0 0 15px rgba(0,212,255,0.7);
}

.event-session span{
  color:rgba(255,255,255,0.65);
}

/* =========================================
   DAY PLANNER
========================================= */

.day-planner{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.planner-slot{
  padding:18px;
  border-radius:18px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.planner-slot span{
  display:block;

  margin-bottom:8px;

  color:#00d4ff;

  font-weight:700;
}

.active-slot{
  background:linear-gradient(
    135deg,
    rgba(127,92,255,0.25),
    rgba(0,212,255,0.18)
  );

  border:1px solid rgba(0,212,255,0.25);
}

/* =========================================
   AI CALENDAR
========================================= */

.ai-calendar{
  padding:24px;
  border-radius:24px;

  background:linear-gradient(
    135deg,
    rgba(127,92,255,0.18),
    rgba(0,212,255,0.12)
  );

  border:1px solid rgba(255,255,255,0.08);
}

.ai-top{
  display:flex;
  align-items:center;
  gap:18px;

  margin-bottom:24px;
}

.ai-icon{
  width:58px;
  height:58px;

  border-radius:18px;

  display:grid;
  place-items:center;

  font-size:1.4rem;

  background:linear-gradient(
    135deg,
    #7f5cff,
    #00d4ff
  );
}

.ai-top span{
  color:rgba(255,255,255,0.65);
}

.ai-status{
  padding:16px;

  border-radius:16px;

  text-align:center;

  font-weight:700;

  background:rgba(255,255,255,0.08);
}

/* =========================================
   DEADLINE TRACKER
========================================= */

.deadline-tracker{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.deadline-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.deadline-top span{
  color:#ff4fd8;
  font-weight:700;
}

.deadline-progress{
  height:12px;

  border-radius:999px;

  overflow:hidden;

  background:rgba(255,255,255,0.08);

  margin-bottom:18px;
}

.deadline-progress span{
  display:block;

  width:82%;
  height:100%;

  background:linear-gradient(
    90deg,
    #ff4fd8,
    #7f5cff
  );
}

.deadline-footer{
  display:flex;
  justify-content:flex-end;
}

.deadline-footer p{
  color:rgba(255,255,255,0.68);
}


/* MONTHLY AGENDA */

.monthly-agenda{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.agenda-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:24px;
}

.agenda-top span{
  color:rgba(255,255,255,0.65);
}

.agenda-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:10px;
}

.agenda-grid span{
  height:42px;

  border-radius:12px;

  display:grid;
  place-items:center;

  background:rgba(255,255,255,0.08);
}

.agenda-active{
  background:linear-gradient(135deg,#7f5cff,#00d4ff) !important;
}

/* VACATION */

.vacation-planner{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.vacation-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.vacation-top span{
  color:rgba(255,255,255,0.65);
}

.vacation-top i{
  font-size:1.8rem;
  color:#00d4ff;
}

.vacation-progress{
  height:10px;

  border-radius:999px;

  overflow:hidden;

  background:rgba(255,255,255,0.08);
}

.vacation-progress span{
  display:block;

  width:68%;
  height:100%;

  background:linear-gradient(90deg,#7f5cff,#00d4ff);
}

/* HABIT TRACKER */

.habit-tracker{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.habit-top{
  display:flex;
  justify-content:space-between;

  margin-bottom:20px;
}

.habit-top span{
  color:rgba(255,255,255,0.65);
}

.habit-days{
  display:flex;
  gap:12px;
}

.habit-days span{
  width:38px;
  height:38px;

  border-radius:12px;

  background:rgba(255,255,255,0.08);
}

.habit-days .done{
  background:linear-gradient(135deg,#7f5cff,#00d4ff);
}

/* DEADLINE ALERT */

.deadline-alert{
  display:flex;
  align-items:center;
  gap:18px;

  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.alert-icon{
  width:60px;
  height:60px;

  border-radius:18px;

  display:grid;
  place-items:center;

  font-size:1.5rem;

  background:linear-gradient(135deg,#ff8a00,#ff3d77);
}

.deadline-alert p{
  color:rgba(255,255,255,0.65);
  margin-top:8px;
}

/* CLASS SCHEDULE */

.class-schedule{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.class-item{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px;

  border-radius:18px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.active-class{
  background:linear-gradient(
    135deg,
    rgba(127,92,255,0.25),
    rgba(0,212,255,0.2)
  );
}

/* FITNESS */

.fitness-calendar{
  padding:24px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.fitness-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.fitness-top span{
  color:rgba(255,255,255,0.65);
}

.fitness-top i{
  color:#ff7a18;
  font-size:1.8rem;
}

.fitness-calendar h2{
  font-size:2.6rem;
}

/* CONTENT PLANNER */

.content-planner{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.content-row{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px;

  border-radius:18px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.content-row p{
  color:#00d4ff;
  font-weight:700;
}