.card {
    background-color: #e0f8ff;
}

.columns.is-equal-height {
    display: flex;
    flex-wrap: wrap;
}

.columns.is-equal-height > .column {
    display: flex;
    flex-direction: column;
}

.columns.is-equal-height .box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

input[readonly] {
    color: black;
}

li {
    margin-bottom: 0.5em;
}

.drag-container {
    margin-top: 20px;
}

.drag-column {
    border: 2px dashed #485fc7;
    border-radius: 5px;
}

.draggable {
    padding: 10px;
    margin: 5px 0;
    background-color: #e0f8ff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: grab;
}

.draggable:hover {
    background-color: #d8f5fd;
}

.draggable:active, .dragging {
    cursor: grabbing;
    background-color: #e2e2e2;
    border-color: #aaa;
}

.dragging-mobile {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background-color: #e2e2e2;
    border-color: #aaa;
}

.card.team {
    background-color: #ffffff;
    transition: transform 0.2s ease;
    height: 100%;
}

.card.team:hover {
    transform: scale(1.02);
}

#scrum-steps-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#scrum-steps-list::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 0.4rem;
    bottom: 0.4rem;
    border-left: 2px dashed #111111;
    opacity: 0.22;
}

.scrum-step-item {
    position: relative;
    display: flex;
    gap: 0.9rem;
    padding: 1rem 1.25rem 1.1rem 1.25rem;
    border-radius: 16px;
    border: 2px solid #111111;
    background-color: var(--card-bg);
    box-shadow: 0 6px 0 #111111;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.scrum-step-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 0 #111111;
    background-color: var(--card-bg-hover);
}

.scrum-step-icon-wrap {
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 2px solid #111111;
    background-color: var(--text-section-bg);
    box-shadow: 0 3px 0 #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.scrum-step-icon-wrap i {
    font-size: 1.2rem;
}

.scrum-step-content {
    flex: 1 1 auto;
}

.scrum-step-title {
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.scrum-step-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.75;
    margin-left: 0.4rem;
}

.scrum-step-body {
    font-size: 1rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    #scrum-steps-list::before {
        left: 1.3rem;
    }

    .scrum-step-item {
        padding: 0.9rem 0.9rem 1rem 1.1rem;
    }

    .scrum-step-icon-wrap {
        width: 2.2rem;
        height: 2.2rem;
        box-shadow: 0 2px 0 #111111;
    }

    .scrum-step-body {
        font-size: 0.9rem;
    }
}

.scrum-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid #111111;
    box-shadow: 0 2px 0 #111111;
    background-color: #6554C0;
}

.scrum-epic-icon {
    background-color: #6554C0;
}

.scrum-story-icon {
    background-color: #36B37E;
}

.scrum-task-icon {
    background-color: #00B8D9;
}

.scrum-bug-icon {
    background-color: #FF5630;
}

.scrum-icon i {
    color: #ffffff;
    font-size: 1rem;
}
