.eben-checklist-frontend ul {
    list-style: none;
    padding: 0px;
}
.eben-checklist-frontend li {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center; /* ? vertikálne centrovanie */
    gap: 8px;
     font-weight: bold;
     margin-left:10px;
}
.eben-checklist-frontend input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8a8a8a;
    flex-shrink: 0;
    transform: translateY(1px); /* ? jemné doladenie vertikálnej pozície */
        margin-right: 15px;
}


/* ?? Nové: sivý text úlohy po zaškrtnutí */
.eben-checklist-frontend li:has(input[type="checkbox"]:checked) {
    color: silver;
   font-weight: normal ;
}

/* ? Meno používateľa */
.eben-done-by {
    color: #78bb78;
    margin-left: 10px;
    font-size:small;
   
}


.eben-phase ul {
padding-top:0px;
    margin-top: 10px;
}


.eben-phase h4 {
padding-top:0px;
    margin-bottom: 0px;
    color: #38a3b3;
}


.eben-phase h2 {
padding-top: 0;
    margin-top: 0;
    /* display: table-header-group; */
    background: #d1c6b6;
    color: white;
    text-align: center;
        font-size: large;
border-radius: 10px;
  }
