/* label-management.css */

input.labelname {
	width: 70%;
	padding: 8px;
    font-family: "Open Sans", "IBM Plex Sans", sans-serif;
	font-weight: bold;
    background-color: white;
    border-radius: 2px;
}

div.label-mgmt-container {
    display: flex;
    padding-top: 12px;
}

div.label-mgmt-sidebar {
    flex: 3;
    background-color: ghostwhite;
    padding-right: 12px;
    overflow-y: auto;
    height: 300px;
}

div.label-mgmt-content {
    flex: 7;
    background-color: white;
    border: 1px solid dimgrey;
    border-radius: 4px;
    padding: 16px;
    margin-left: 24px;
}

div.label-mgmt-symbols {
    padding-top: 16px;
    padding-bottom: 8px;
}

button.label-mgmt-label {
    padding: 8px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: black;
    border: 1px solid darkgray;
    background-color: white;
    width: 100%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

button.label-mgmt-label:hover {
    background-color: deepskyblue;
}

button.new-label {
    font-weight: normal;
}

button.label-mgmt-label.selected-label {
    background-color: gold;
}

img.label-sidebar-symbol {
    height: 20px;
    margin-right: 8px;
}
