.sch-events-wrap {
    margin: 24px 0;
}
.sch-events-title {
    margin: 0 0 18px;
}
.sch-events-empty {
    padding: 12px 14px;
    background: #f7f7f7;
    border-radius: 8px;
}
.sch-events-timeline {
    position: relative;
    margin-left: 16px;
    padding-left: 22px;
}
.sch-events-timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #dfe5dc;
    border-radius: 3px;
}
.sch-event-card {
    position: relative;
    display: grid;
    grid-template-columns: 110px 18px minmax(0, 1fr);
    gap: 12px;
    margin: 0 0 18px;
    align-items: start;
}
.sch-event-date {
    text-align: right;
    color: #444;
    font-weight: 700;
    padding-top: 8px;
}
.sch-event-date small {
    display: block;
    font-weight: 400;
    color: #777;
    margin-top: 2px;
}
.sch-event-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #81BA40;
    box-shadow: 0 0 0 5px rgba(129, 186, 64, .18);
    margin-top: 10px;
    position: relative;
    left: -31px;
}
.sch-event-content {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.sch-event-head,
.sch-team-head {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.sch-event-head h3,
.sch-team-head h5 {
    margin: 0;
}
.sch-event-badge,
.sch-team-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f3f3f3;
    font-size: 12px;
    white-space: nowrap;
}
.sch-event-meta,
.sch-team-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #555;
    margin: 8px 0;
}
.sch-event-desc,
.sch-team-desc {
    margin-top: 10px;
}
.sch-event-desc p:last-child,
.sch-team-desc p:last-child {
    margin-bottom: 0;
}
.sch-event-progress {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 700;
    color: #3f5f20;
}
.sch-event-progress span,
.sch-team-progress {
    display: inline-block;
    padding: 5px 9px;
    background: #f2f8ed;
    border-radius: 999px;
}
.sch-team-section {
    margin-top: 16px;
}
.sch-team-section > h4 {
    margin: 0 0 10px;
}
.sch-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}
.sch-team-card {
    background: #fbfbfb;
    border: 1px solid #e4e4e4;
    border-left: 5px solid #81BA40;
    border-radius: 13px;
    padding: 14px;
}
.sch-team-area {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #5a7d35;
}
.sch-team-members {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e4e4e4;
    color: #555;
}
.sch-team-progress {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #3f5f20;
}
.sch-team-status-risk {
    border-left-color: #d63638;
}
.sch-team-status-done {
    border-left-color: #00a32a;
}
.sch-task-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.sch-task-column {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 10px;
}
.sch-task-column h4 {
    margin: 0 0 8px;
    font-size: 15px;
}
.sch-task-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
}
.sch-task-card strong,
.sch-task-card span {
    display: block;
}
.sch-task-card span {
    color: #555;
    font-size: 13px;
    margin-top: 4px;
}
@media (max-width: 720px) {
    .sch-events-timeline {
        margin-left: 0;
        padding-left: 18px;
    }
    .sch-event-card {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .sch-event-date {
        text-align: left;
        padding-left: 12px;
    }
    .sch-event-marker {
        position: absolute;
        left: -26px;
        top: 3px;
    }
    .sch-event-content {
        margin-left: 0;
    }
    .sch-event-head,
    .sch-team-head {
        display: block;
    }
    .sch-event-badge,
    .sch-team-badge {
        margin-top: 8px;
    }
}


.sch-my-tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 14px;
}
.sch-my-task-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-left: 5px solid #81BA40;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.sch-my-task-head {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.sch-my-task-head h3 {
    margin: 0;
}
.sch-my-task-description {
    margin: 12px 0;
    padding: 10px 12px;
    background: #f7faf5;
    border-radius: 10px;
}
.sch-my-task-description p:last-child {
    margin-bottom: 0;
}
.sch-my-task-form {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e6e6e6;
}
.sch-my-task-form input[type="range"] {
    width: min(100%, 320px);
    vertical-align: middle;
}
.sch-my-task-form output {
    display: inline-block;
    min-width: 52px;
    margin-left: 8px;
    font-weight: 700;
    color: #3f5f20;
}
.sch-my-task-form select,
.sch-my-task-form textarea {
    width: 100%;
    max-width: 520px;
}
.sch-my-task-updated {
    color: #666;
    font-size: 13px;
}
.sch-task-button {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    border: 0;
    background: #81BA40;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.sch-task-button:hover {
    background: #679a32;
    color: #fff;
}
.sch-task-notice {
    padding: 11px 14px;
    margin: 12px 0;
    border-radius: 10px;
}
.sch-task-notice-success {
    background: #eef8ed;
    border-left: 4px solid #46b450;
}
