.wideVIS {
    display: block;
}
@media screen and (max-width: 1200px) {
    .wideVIS {
	display: none;
    }
}


.instrumentBox {
    width: 490px;
}
@media only screen and (max-width: 1200px) {
    .instrumentBox {
	width: 530px;
    }
}
@media only screen and (max-width: 700px) {
    .instrumentBox {
	width: 320px;
    }
}
@media only screen and (max-width: 400px) {
    .instrumentBox {
	width: 300px;
    }
}



.instrumentBoxTitle {
    display: grid;
    grid-template-columns: 1fr 10px  50px 50px;

    padding: 10px;
    background-color: var(--color-blue);
    color: white;

    grid-template-areas:
        "instrumentName    .      instrumentDeleteLink instrumentEditLink";
}           
@media screen and (max-width: 400px) {
    .instrumentBoxTitle {
	grid-template-columns: 1fr 10px  45px 40px;
    }
}

.instrumentLevelName {
    font-size: 16px;
    color: white;
}
@media screen and (max-width: 400px) {
    .instrumentLevelName {
	font-size: 14px;
    }
}

.instrumentName {
    grid-area: instrumentName;
}


.instrumentEditLink {
    grid-area: instrumentEditLink;
    text-align: right;
}
.instrumentDeleteLink {
    grid-area: instrumentDeleteLink;
    text-align: right;
}

.instrumentEditLink a, .instrumentDeleteLink a {
    color: white;
    font-size: 16px;
}
.instrumentEditLink a:hover, .instrumentDeleteLink a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 400px) {
    .instrumentEditLink a, .instrumentDeleteLink a {
	font-size: 14px;
    }
}



.instrumentBoxEdit {
    padding: 10px;

    border: 2px var(--color-blue) solid;
}
