.config-modal-container {
    position: absolute;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    z-index: 6;
    
    width: 60%;
    left: 20%;
    top: 50px;
    max-height: calc(100% - 100px);

    background-color: black;
    font-family: monospace;
    font-size: 14px;
    color: lightgreen;

    padding: 12px 16px;
    padding-bottom: 16px;
    
    border: 3px solid;
    border-color: lightseagreen;
}

.config-modal-container .content-container {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.config-modal-container .content-container .clickable {
	cursor: pointer;
}

.config-modal-container .content-container .close-btn {
	position: absolute;
    right: 3px;
    top: 3px;
    line-height: 18px;
    font-family: monospace;
    font-size: 18px;
    color: gold;

    background: transparent;
    font-family: sans-serif;
    line-height: 32px;
    font-size: 32px;
}

.config-modal-container .content-container .instructions {
	width: calc(100% - 50px);
	padding-bottom: 16px;
	font-weight: bold;
	color: gold;
}

.config-modal-container .content-container .circuit-list-container {
	overflow-y: auto;
}

.config-modal-container .content-container .circuit-list-container .load-circuit-item {
	height: 24px;
	box-sizing: border-box;
	line-height: 24px;
	font-weight: bold;
}

.config-modal-container .content-container .circuit-list-container .load-circuit-item:hover {
	line-height: 20px;
	padding-left: 6px;
	border: 2px dashed yellow;
}

.config-modal-container .content-container .load-save-textarea {
	height: 300px; 
	width: calc(100% - 20px); 
	resize: vertical;
    background-color: black;
    font-size: 12px;
	color: deepskyblue; 
 	color: #aea8ef;
 	color: #ccf47d;
}

.config-modal-container .content-container .memory-instructions {
    overflow-y: auto;
    font-weight: bold;
    color: gold;
}

.config-modal-container .content-container .moments-link {
    margin-right: 10%;
    cursor: pointer;
    color: #ff40b8;
    font-weight: bold;
    font-style: italic;
}
.config-modal-container .content-container .moments-link:hover {
    text-decoration: underline;
}
