.practical-block-label-container {
    display: inline-block;
    margin-top: 5px;
}

.practical-block-label {
    cursor: pointer;
    pointer-events: auto; /* Disable interaction */
    display: inline-block;
    padding: 5px 10px;
    background-color: grey;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    margin-left: 2px; /* Space on the left side */
    margin-right: 2px; /* Space on the right side */
}

/* New class to change color when in edit mode */
.practical-block-label.edit-mode {
    background-color: red; /* Change background color to red */
    color: white; /* Ensure text color stays readable */
}

 .red-x {
    color: red;
    font-size: 18px;
    margin-left: 10px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}

/* Style for the input field that appears when editing */
.edit-input {
    margin-left: 10px;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    width: 150px;
    vertical-align: middle;
}
