.gvsh-kalendarium{
  max-width: 100%;
  margin:0 auto;
}

/* FILTRY (zostawione jak było) */
.gvsh-kalendarium__filters{
  margin:0 0 18px;
}

.gvsh-kalendarium__row{
  display:flex;
  gap:14px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.gvsh-kalendarium__segmented{
  display:inline-flex;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  overflow:hidden;
  background:#fff;
}

.gvsh-kalendarium__seg{
  appearance:none;
  border:0;
  background:transparent;
  padding:10px 14px;
  font-weight:600;
  cursor:pointer;
  line-height:1;
}

.gvsh-kalendarium__seg.is-active{
  background:rgba(0,0,0,.06);
}

.gvsh-kalendarium__dates{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.gvsh-kalendarium__label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:12px;
  opacity:.85;
  margin-bottom:0!important;
}

.gvsh-kalendarium__input{
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  padding:10px 12px;
  min-width:160px;
  background:#fff;
}

.gvsh-kalendarium__apply{
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  padding:10px 14px;
  background:#fff;
  font-weight:600;
  cursor:pointer;
}

.gvsh-kalendarium__reset{
  font-size:13px;
  text-decoration:none;
  opacity:.8;
  padding:10px 6px;
}

.gvsh-kalendarium__reset:hover{
  opacity:1;
  text-decoration:underline;
}

/* LISTA jak screen */
.gvsh-kalendarium__list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.gvsh-kalendarium__item{
  position:relative;
  display:grid;
  grid-template-columns: 90px 12px 1fr;
  gap:18px;
  align-items:center;

  padding:22px 24px;
  background:#f7f7f7;
  border-left: 1px solid #39aa40;
  border-radius:0px;
}

/* DATA */
.gvsh-kalendarium__date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  line-height:1;
  font-variant-numeric: tabular-nums;
}

.gvsh-kalendarium__day{
  font-size:52px;
  font-weight:800;
  letter-spacing:-1px;
  color:#2bb24c;
}

.gvsh-kalendarium__my{
  margin-top:6px;
  font-size:14px;
  font-weight:700;
  color:#2bb24c;
  opacity:.95;
}

/* PASEK */
.gvsh-kalendarium__bar{
  width:12px;
  height:100%;
  background:#2bb24c;
  border-radius:3px;
}

/* TYTUŁ */
.gvsh-kalendarium__title{
  margin:0;
  font-size:16px;
  line-height:1.35;
  font-weight:600;
  color:#222;
  padding-right:170px; /* miejsce na przyciski */
}

/* PRZYCISKI zostają "tam gdzie są" */
.gvsh-kalendarium__topRight{
  position:absolute;
  right:18px;
  top:18px;
  display:flex;
  align-items:center;
  gap:10px;
}

.gvsh-kalendarium__badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.65);
  opacity:.95;
  white-space:nowrap;
}

.gvsh-kalendarium__item.is-arch{
  opacity:.62;
}

.gvsh-kalendarium__empty{
  padding:14px 16px;
  border:1px dashed rgba(0,0,0,.18);
  border-radius:16px;
  opacity:.8;
}

/* ICS */
.gvsh-kalendarium__icsBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  padding:8px 12px;
  background:#fff;
  font-weight:700;
  font-size:12px;
  line-height:1;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:background .15s ease,opacity .15s ease;
  white-space:nowrap;
}

.gvsh-kalendarium__icsBtn:hover{
  background:rgba(0,0,0,.04);
}

/* MOBILE */
@media (max-width:640px){
  .gvsh-kalendarium__item{
    grid-template-columns:1fr;
    gap:12px;
    padding:18px 16px;
  }

  .gvsh-kalendarium__bar{
    width:100%;
    height:8px;
    border-radius:999px;
  }

  .gvsh-kalendarium__date{
    align-items:flex-start;
  }

  .gvsh-kalendarium__title{
    padding-right:0;
  }

  .gvsh-kalendarium__topRight{
    position:static;
    justify-self:start;
    margin-top:6px;
  }
}