html,body{
  margin:0;
  padding:0;
}


.ccr-topbar{
  width:100%;
  margin:0;


  min-height:150px;
  padding:28px 24px;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(90deg,#21482b,#558763);
  border-bottom:6px solid #e00000;
  color:#fff;
}
.ccr-brand{display:flex;align-items:center;gap:18px}
.ccr-brand img{width:78px;height:78px;object-fit:contain;border-radius:50%;background:#fff}
.ccr-title{font-size:30px;font-weight:800;text-shadow:0 1px 2px rgba(0,0,0,.3)}
.ccr-subtitle{font-size:15px;margin-top:8px;font-weight:700;text-shadow:0 1px 2px rgba(0,0,0,.25)}
.ccr-side{text-align:right;font-size:15px;line-height:1.45;max-width:330px;text-shadow:0 1px 2px rgba(0,0,0,.25)}
.ccr-side strong{display:block;font-size:18px;margin-bottom:4px}
.ccr-side span{display:block}
.ccr-side .ccr-user{margin-top:6px;font-weight:800}
.ccr-logout{display:inline-block;margin-top:8px;background:#dc2626;color:#fff;text-decoration:none;border-radius:8px;padding:7px 11px;font-weight:800;font-size:13px;text-shadow:none}

.ccr-nav{
  width:100%;
  margin:0 0 18px;


  padding:10px 16px;
  background:#0f172a;
  box-sizing:border-box;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.ccr-nav a{
  color:#e5e7eb;
  text-decoration:none;
  padding:8px 12px;
  border-radius:7px;
  font-weight:700;
}
.ccr-nav a.active,.ccr-nav a:hover{background:#0ea5e9;color:#fff}
.ccr-nav a.ccr-back{background:#64748b;color:#fff;margin-left:auto}
.ccr-nav a.ccr-back:hover{background:#475569;color:#fff}

@media(max-width:760px){
  .ccr-topbar{align-items:flex-start;flex-direction:column;min-height:auto}
  .ccr-side{text-align:left}
  .ccr-title{font-size:24px}
  .ccr-subtitle{font-size:13px}
}