/* Container for the resource labels */
.resources-block-label-container {
    display: inline-block;
    margin-top: 5px;
    vertical-align: top; /* Ensures the container doesn't overlap with other elements */
}

/* Individual resource labels */
.resources-block-label {
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    background-color: #2D8ACF;
    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 */
    position: relative; /* For positioning the red X inside each label */
}

/* Red "X" that appears in each resource label */
.red-x {
    color: red;
    font-size: 18px;
    margin-left: 10px; /* Space between the label and the red X */
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer; /* Add a pointer cursor to indicate it's clickable */
}

/* 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;
    margin-top: 5px; /* Add space above the input field */
}

