:root{
  --bg: #F3F5F7;
  --surface: rgba(255,255,255,0.75);
  --surface-solid: #ffffff;
  --text: #0b1f14;
  --muted: #5e6b63;

  --primary: #1f8a5b;        /* green */
  --primary-2: #0f6b43;
  --lime: #b7f34a;           /* lime accent */

  --border: rgba(15,31,20,0.10);
  --shadow: 0 12px 32px rgba(11,31,20,0.10);
  --radius: 16px;
}

html,body{height:100%;}
body{
  background: radial-gradient(1200px 600px at 15% 10%, rgba(183,243,74,0.18), transparent 60%),
              radial-gradient(900px 500px at 85% 20%, rgba(31,138,91,0.18), transparent 55%),
              linear-gradient(180deg, #f7f8f9, #eef2f1);
  color: var(--text);
}

/* App layout */
.suite-bg{min-height:100vh; padding:18px;}
.suite-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.suite-logo{
  width:40px; height:40px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(183,243,74,0.75), rgba(31,138,91,0.65));
  color: #0b1f14;
  font-weight: 800;
  letter-spacing: .04em;
}
.suite-title{font-weight:800; line-height:1.1;}
.suite-subtitle{font-size:.85rem; color: var(--muted);}

.suite-container{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 992px){
  .suite-container{grid-template-columns: 1fr;}
}

.suite-sidebar{
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  position: sticky;
  top: 18px;
}
.suite-sidebar .nav-link{
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 4px;
}
.suite-sidebar .nav-link:hover{background: rgba(31,138,91,0.08);}
.suite-sidebar .nav-link.active{
  background: rgba(31,138,91,0.12);
  color: var(--primary-2);
  font-weight: 700;
}

.suite-content{min-width:0;}

.suite-navbar{
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.70) !important;
  border-bottom: 1px solid var(--border);
}

.suite-brand-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.35rem .6rem;
  border-radius: 999px;
  background: rgba(183,243,74,0.22);
  border: 1px solid rgba(183,243,74,0.45);
  color: var(--text);
  font-weight: 600;
}

.suite-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Make bootstrap cards fit the theme */
.card{
  border-color: var(--border) !important;
  border-radius: var(--radius) !important;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
}
.card.border-0{border: 1px solid var(--border) !important;}
.suite-module{transition: transform .12s ease, box-shadow .12s ease;}
.suite-module:hover{transform: translateY(-2px); box-shadow: 0 18px 42px rgba(11,31,20,0.12);}

.suite-card .card-header{
  background: transparent;
  border-bottom: 1px solid var(--border);
}

/* Bootstrap cards align to CI */
.card{background: rgba(255,255,255,0.70); border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);}
.card.border-0{border:1px solid var(--border)!important;}

.suite-module{background: rgba(255,255,255,0.70);}

.btn-primary{
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-2);
  --bs-btn-hover-border-color: var(--primary-2);
  --bs-btn-active-bg: var(--primary-2);
  --bs-btn-active-border-color: var(--primary-2);
}

.btn-outline-primary{
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: rgba(31,138,91,0.45);
  --bs-btn-hover-bg: rgba(31,138,91,0.10);
  --bs-btn-hover-border-color: rgba(31,138,91,0.65);
}

.form-control, .form-select{
  border-radius: 12px;
  border-color: rgba(15,31,20,0.15);
}

.form-control:focus, .form-select:focus{
  box-shadow: 0 0 0 .25rem rgba(31,138,91,0.18);
  border-color: rgba(31,138,91,0.55);
}

.suite-footer{
  color: var(--muted);
}

.module-tile{
  text-decoration: none;
  color: inherit;
}
.module-tile:hover{
  transform: translateY(-2px);
}
.module-tile .tile{
  transition: transform .12s ease, box-shadow .12s ease;
}
.module-tile:hover .tile{
  box-shadow: 0 18px 42px rgba(11,31,20,0.12);
}

.badge-soft{
  background: rgba(31,138,91,0.10);
  border: 1px solid rgba(31,138,91,0.25);
  color: var(--primary-2);
}
