/* Style dla przycisków statusu komentarza */
.comment-status-buttons {
    margin-left: 0;
    margin-top: 10px;
    display: block;
}

.comment-status-buttons form {
    display: inline-block;
    margin-right: 2px;
}

.btn-status-todo {
    background-color: #ff9900;
    color: white;
}

.btn-status-done {
    background-color: #00aa00;
    color: white;
}

.btn-status-default {
    background-color: #777777;
    color: white;
}

.btn-status-todo.active,
.btn-status-done.active {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

/* Style dla komentarzy z różnymi statusami */
.bugnote.comment-status-todo {
    border-left: 4px solid #ff9900 !important;
}

.bugnote.comment-status-todo .bugnote-note{
    background-color: #fdefe5 !important;
}


.bugnote.comment-status-done {
    border-left: 4px solid #00aa00 !important;
}
.bugnote.comment-status-done .bugnote-note {
    background-color: #e1f1e5 !important;
}