/* Margins */
.m-10 {
    margin: 0.625rem;
}
.m-20 {
	margin: 1.25rem;
}
.mt-10 {
	margin-top: 0.625rem;
}
.mt-20 {
	margin-top: 1.25rem;
}
.ml-10 {
	margin-left: 0.625rem;
}
.ml-20 {
	margin-left: 1.25rem;
}
.mr-10 {
	margin-right: 0.625rem;
}
.mr-20 {
	margin-right: 1.25rem;
}
.mb-10 {
    margin-bottom: 0.625rem;
}
.mb-20 {
	margin-bottom: 1.25rem;
}

/* Paddings */
.p-10 {
    padding: 0.625rem;
}
.pt-10 {
    padding-top: 0.625rem;
}
.pl-10 {
    padding-left: 0.625rem;
}
.pr-10 {
    padding-right: 0.625rem;
}
.pb-10 {
    padding-bottom: 0.625rem;
}

/* Text decorations */
.text-bold {
    font-weight: bold;
}
.text-italic {
    font-style: italic;
}
.text-underlined {
    text-decoration: underline;
}

/* Sizes */
.fullwidth {
	min-width: 100%;
}
.fullheight {
	min-height: 100%;
}
.width-100 {
	width: 100%;
}
.height-100 {
	height: 100%;
}
.width-50 {
	width: 50%;
}
.height-50 {
	height: 50%;
}
.width-20 {
	width: 20%;
}
.height-20 {
	height: 20%;
}

/* Page structure */
.flex-col {
	display: flex;
	flex-direction: column;
}
.flex-row {
	display: flex;
	flex-direction: row;
}
.space-between {
	justify-content: space-between;
}

/* Spacing */
.gap-10 {
	gap: 0.625rem;
}
.gap-20 {
	gap: 1.25rem;
}

/* Alignment */
.align-center {
	align-items: center;
}
.vertical-center {
	justify-content: center;
}

/* Positioning */
.top-0 {
	top: 0;
}
.top-10 {
	top: 0.625rem;
}
.top-20 {
	top: 1.25rem;
}
.top-50 {
	top: 3.125rem;
}
.position-fixed {
	position: fixed;
}
.position-relative {
	position: relative;
}
.position-absolute {
	position: absolute;
}

/* Text size */
.text-30 {
	font-size: 1.875rem;
}
.text-22 {
	font-size: 1.3rem;
}
.text-18 {
	font-size: 1.125rem;
}
.text-14 {
	font-size: 0.875rem;
}
.text-8 {
	font-size: 0.5rem;
}

/* Modal */
#modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}
.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	height: 70%;
	border-radius: 10px;
}
.modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	transition: color 0.2s;
}
.modal-close:hover,
.modal-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.health-color {
	color: green;
}
.mana-color {
	color: cyan;
}
.exp-color {
	color: violet;
}
.sick-color {
	color: lightgreen;
}
.blood-color {
	color: crimson;
}
.injury-color {
	color: brown;
}

.text-info {
	color: #007bff;
}
.text-danger {
	color: red;
}
.text-white {
	color: white;
}
.text-gray {
	color: gray;
}
.text-red {
	color: red;
}

.float-right {
	float: right;
}
.rounded {
	border-radius: none;
}
