:root{
  --primary:#2563eb;
  --bg:#f1f5f9;
}

body{
  margin:0;
  font-family:system-ui;
  background:
  radial-gradient(circle at 10% 10%, #e0f2fe, transparent 40%),
  radial-gradient(circle at 90% 90%, #dcfce7, transparent 40%),
  var(--bg);
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  background:white;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:999;
}

.wrapper{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:250px 1fr 250px;
  gap:20px;
  padding:20px;
}

.side{
  background:white;
  padding:15px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.side{
  min-height: 500px;
}
.center{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.login{
  background:white;
  padding:18px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.login input{
  padding:12px;
  margin:5px;
  width:200px;
  border-radius:8px;
  border:1px solid #ddd;
  transition:0.2s;
}

.login input:focus{
  border-color:var(--primary);
  outline:none;
  box-shadow:0 0 0 3px rgba(37,99,235,0.2);
}

.login button{
  padding:12px 22px;
  border:none;
  border-radius:8px;
  background:var(--primary);
  color:white;
  cursor:pointer;
  transition:0.2s;
}

.login button:hover{
  transform:scale(1.05);
  box-shadow:0 5px 15px rgba(37,99,235,0.3);
}

.rooms{
  background:white;
  padding:18px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.category{
  margin-bottom:18px;
}

.category h3{
  margin:0 0 10px;
  font-size:15px;
}

.room{
  display:inline-block;
  margin:4px;
  padding:7px 13px;
  border-radius:10px;
  background:#e2e8f0;
  cursor:pointer;
  font-size:13px;
  transition:all 0.25s ease;
}

.room:hover{
  background:var(--primary);
  color:white;
  transform:scale(1.08);
  box-shadow:0 5px 15px rgba(37,99,235,0.3);
}

.room.active{
  background:var(--primary);
  color:white;
  transform:scale(1.05);
  box-shadow:0 0 0 2px white, 0 0 15px rgba(37,99,235,0.7);
}

.footer{
  text-align:center;
  margin:30px;
  font-size:12px;
  color:#64748b;
}

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

.footer a:hover{
  opacity:0.7;
}

@media(max-width:900px){

  .side{
    display:none;
  }

  .wrapper{
    display:block;
    padding:10px;
  }

  #loginBox{
    position:sticky;
    top:60px;
    z-index:999;
    background:white;
  }

  .login input{
    width:65%;
  }

  .login button{
    width:30%;
  }
}

   .quote-box{
      margin:30px auto 0;
      max-width:1200px;
      padding:22px 28px;
      background:#fff;
      border:2px solid #cfe0ff;
      border-radius:0;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      gap:12px;
      font-weight:700;
      color:#2f4f7f;
      box-shadow:none;
    }

    .quote-text-wrap{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      width:100%;
    }

    .quote-label{
      font-size:0.82rem;
      font-weight:800;
      letter-spacing:0.8px;
      text-transform:uppercase;
      color:#5b8def;
      margin-bottom:4px;
    }

    #quoteDate{
      font-size:0.8rem;
      font-weight:600;
      color:#7f9ccf;
      margin-bottom:4px;
    }

    #dailyQuoteText{
      font-size:1rem;
      font-weight:700;
      color:#2f4f7f;
    }