/* item.css */

textarea.item-note-data {
	width: 80%;
	padding: 8px;
    font-family: "Open Sans", "IBM Plex Sans", sans-serif;
	font-weight: normal;
    background-color: white;
    resize: none;
    margin-top: 16px;
}

button.item-edit-label-selector {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: black;
    border: 1px solid black;
    background-color: white;
    display: flex;
    align-items: center;
}

button.item-edit-label-selector:hover {
    background-color: deepskyblue;
}

img.item-edit-label-symbol {
    height: 20px;
    margin-right: 16px;
}

img.item-add-icon {
    height: 24px;
    position: fixed;
    top: 12px;
    left: 12px;
}

div.lifecycle-panel {
    margin-top: 24px;
}

button.lifecycle {
    background-color: white;
    border: 1px solid dimgray;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: bold;
    transform: skewX(-15deg);
    color: darkgray;
}

button.lifecycle.lifecycle-editable {
    color: black;
}

button.lifecycle-editable:hover {
    background-color: deepskyblue;
}

button.lifecycle.selected-lifecycle {
    background-color: gold;
}

span.lifecycle-text {
    transform: skewX(15deg);
    display: inline-block;
}

button.item-edit-star {
    margin-left: 24px;
}

button.item-edit-palette {
    margin-right: 24px;
}

div.item-color-panel-expander {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s linear;
}

div.open-expander {
    grid-template-rows: 1fr;
}

div.item-color-panel-expander > div {
    overflow: hidden;
}

div.item-color-panel {
    margin-top: 12px;
}

button.item-edit-note {
    margin-left: 8px;
}

div.item-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

div.item-properties {
    display: flex;
    align-items: center;
    justify-content: center;
}

div.slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

div.slider > div {
    flex-shrink: 0;
    width: 100%;
}

div.item-edit-confirm-panel {
    margin-top: 24px;
}
