.post-it {
    position: relative;
    background-color: #252526;
    padding: 20px;
    width: 100%;
    height: 200px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
}

.post-it-content {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-bottom: 10px;
}

.post-it button {
    flex-shrink: 0;
}

.post-it::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-radius: 5px 0 0 5px;
}

.post-it.warning::before { background: var(--bs-warning); }
.post-it.danger::before { background: var(--bs-danger); }
.post-it.success::before { background: var(--bs-success); }
.post-it.info::before { background: var(--bs-info); }

.urgent {
    color: #F03545;
}