.inner-list {
    margin-bottom: 1em;
}

.table th, .table td {
    padding: 16px;
}

.radio.custom-radio {
    margin-right: 15px;
}

#devtools-device-toolbar {
    border: 3px solid #4a4a4a;
    border-radius: 15px;
    margin-left: 0;
}

#checklist-steps {
    counter-reset: checklist-counter;
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 1rem;
}

#checklist-steps li {
    margin-bottom: 1.3rem;
    position: relative;
    line-height: 1.7;
    color: #363636;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

#checklist-steps li:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background-color: #fffdfa;
    transform: translateY(-1px);
}

#checklist-steps li:before {
    counter-increment: checklist-counter;
    content: counter(checklist-counter);
    font-weight: bold;
    font-size: 2rem;
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #33841d;
    background-color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

#checklist-steps li:hover:before {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#checklist-steps strong {
    color: #333333;
    background-color: rgba(231, 76, 60, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#checklist-steps strong:hover {
    background-color: rgba(231, 76, 60, 0.2);
    color: black;
}

#resizable-container {
    resize: both;
    overflow: auto;
    border: 3px dashed #363636;
    padding: 20px;
    min-width: 300px;
    min-height: 300px;
    background-color: #f9f9f9;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 1.5rem;
    max-width: 90vw;
    max-height: 90vh;
}

#resizable-container::after {
    content: attr(data-after-text);
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 0.8rem;
    color: #363636;
    opacity: 0.8;
}

.block-item {
    background: linear-gradient(145deg, #f5f0e6, #e2dbcf);
    border: 1px solid #363636;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #363636;
    text-align: center;
}

.block-item:hover {
    background-color: #d6cfc2;
    transform: scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
