.task-manager {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: 20px;
    width: 328px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
}

.task-manager .task-header {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    position: relative;
}

.task-body {
    overflow: hidden;
    display: none;
    position: relative;
    max-height: 400px;
    overflow-y: scroll;
}

.task {
    margin-bottom: 0;
    position: relative;
}

.task:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.task .progress {
    margin-bottom: 0;
}

.alert.task > p {
    margin-bottom: 10px;
}

.task-icon {
    margin-right: 10px;
}

.task-expander, .task-dismiss, .task-log {
    position: relative;
    float: right;
    top: 2px;
}

.task-dismiss+.task-log {
    margin-right: 10px;
}

.task-body .alert > p {
    margin: 0;
}

.task-body .alert > .progress {
    margin-top: 10px;
}

.task-body .alert > .btn {
    margin-top: 10px;
}