/* Extracted from index.html <style id="rabbit-home-launcher-v1"> */

/* =========================================================
   Rabbit Home Rejuvenation V1
   - sidebar rimossa
   - launcher card in home con funzioni originali
   ========================================================= */
.sidebar{
  display:none !important;
}
.app{
  grid-template-columns:minmax(0,1fr) 315px !important;
}
.app.no-rightbar{
  grid-template-columns:minmax(0,1fr) !important;
}
.main{
  min-width:0;
}

.home-launcher-shell{
  padding:16px;
  border-radius:22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(37,86,217,.08), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(14,124,114,.07), transparent 24%),
    rgba(255,255,255,.94);
}
.home-launcher-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}
.home-launcher-head h3{
  margin:0;
  font-size:24px;
  letter-spacing:-.04em;
}
.home-launcher-head p{
  margin:6px 0 0;
  color:#475467;
  max-width:760px;
}
.home-launcher-meta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d4ed8;
  font-weight:800;
  white-space:nowrap;
}
.home-launcher-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}
.launch-card{
  position:relative;
  width:100%;
  text-align:left;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
  box-shadow:0 10px 24px rgba(16,24,40,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:130px;
}
.launch-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(16,24,40,.09);
  border-color:rgba(37,86,217,.24);
}
.launch-card.active{
  border-color:rgba(37,86,217,.36);
  box-shadow:0 14px 30px rgba(37,86,217,.10);
}
.launch-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.launch-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(37,86,217,.16), rgba(14,124,114,.12));
  font-size:20px;
}
.launch-badge{
  display:inline-flex;
  min-width:30px;
  height:30px;
  padding:0 10px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid var(--line);
  color:#101828;
  font-size:12px;
  font-weight:900;
}
.launch-title{
  margin:0;
  font-size:18px;
  letter-spacing:-.03em;
}
.launch-desc{
  margin:0;
  color:#667085;
  font-size:13px;
  line-height:1.45;
}
.launch-footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:#1d4ed8;
  font-weight:800;
  font-size:13px;
}
.launch-arrow{
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#eef4ff;
}

@media(max-width:1480px){
  .home-launcher-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
}
@media(max-width:1180px){
  .app, .app.no-rightbar{grid-template-columns:1fr !important;}
  .rightbar{display:none !important;}
  .home-launcher-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media(max-width:760px){
  .home-launcher-head{flex-direction:column;}
  .home-launcher-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .launch-card{min-height:120px; padding:12px;}
  .launch-title{font-size:16px;}
}
@media(max-width:460px){
  .home-launcher-grid{grid-template-columns:1fr 1fr; gap:8px;}
  .launch-card{min-height:112px; border-radius:16px;}
  .launch-icon{width:38px;height:38px;border-radius:12px;font-size:18px;}
  .launch-badge{min-width:26px;height:26px;padding:0 8px;font-size:11px;}
  .launch-desc{font-size:12px;}
}
