.container {
    user-select: none;
    margin: 0;
    padding: 0;

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    box-sizing: border-box;

    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: stretch;
    
    container-type: size;
    container-name: container;
}

.container .selectable {
    user-select: text;
}

.container * {
	box-sizing: border-box;
}

.container select {
    font-size: 1em;
}

.container .popup-container {
    position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 120;
}

.container .underline-link {
    text-decoration: underline;
    cursor: pointer;
}

/*************************************************/

.container .upload-file-input {
    position: absolute;
    top: -100000px;
}