body {
    background-color: #2a2953;
	background-image: linear-gradient(180deg, #0f0f19, #292953);
	color: white;
}

/* Header */
header {
	width: 100%;
	background-color: #202020;
}

header a {
	display: inline-block;
	color: white;
	text-decoration: none;
	cursor: pointer;
}

.brandingBlock {
    float: left;
    display: flex;
    align-items: center;
    padding: 10px 20px 5px 10px;
}

#imgLogo {
    height: 60px;
    margin-right: 15px;
}

.titleBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titleBlock h1 {
    margin: 0;
    font-size: 2em;
}

.poweredBy {
    font-size: 0.75em;
    color: #ccc;
    margin-top: 3px;
}

.poweredBy a {
    color: inherit;
    text-decoration: underline;
}


header nav {
	clear: left;
}

nav .selected {
	background-color: #2a2953;
	font-weight: bold;
}

header nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: block;
	list-style-type: none;
}

header nav li {
	float: left;
	display: list-item;
	list-style-type: none;
}

header nav a {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 14px 15px;
	text-decoration: none;
	cursor: pointer;
}

nav a:hover {
	background-color: cyan;
	color: black;
}

.nav-dropdown-content {
    display: none;
    position:absolute;
	background-color: #202020;
    font-weight: normal;
}

nav ul li:hover .nav-dropdown-content {
    display: block;
}

/* Content Wrapper */
#divWrapper {
    display: inline-block;
    margin-bottom: 50px;
    width: 100%;
    min-height: 75vh;
}

/* footer */
footer {
	position: fixed;
	left: 0;
    bottom: 0;
	width: 100%;
	height: 25px;
	background-color: black;
	color: white;
	justify-content: center;
	align-items: center;
    display: block;
}

footer img {
    padding-left: 5px;
	height: 20px;
}

footer span {
    color: white;
    text-decoration: underline;
}

footer span:hover {
    color: cyan;
}

/* Floating Icon */
#floatingDiscord {
    display: flex;
	position: fixed;
	right: 15px;
    bottom: 35px;
	width: 60px;
	height: 60px;
	background-color: #7289DA;
	justify-content: center;
	align-items: center;
    border-radius: 100%;
}

#floatingDiscord img {
    padding-left: 5px;
	height: 50px;
	width: 50px;
    margin-left: -5px;
    margin-top: 3px;
    filter: brightness(0) invert(1);
}

/* Search Wrapper */
.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e26d5c;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    box-shadow: 0.25rem 0.25rem 0rem #f0b2a8;
    max-width: 500px;
}

.search-wrapper input {
    font-size: 1.25rem;
    margin: 0 0.5rem;
    width: 100%;
    border: none;
    outline: none;
    background: #e26d5c;
    color: white;
}

.search-wrapper ::placeholder {
    color: #f0b2a8;
}

/* Tabs */
.navBar {
	width: 100%;
    background-color: #C0C0C0;
}

.navBar span {
    font-weight: bold;
    font-size: 1.25em;
}

.divTabs {
    padding-bottom: 40px;
}

.SelectedTab {
    background-color: #E0DCDC;
}

.SelectedTab, .UnselectedTab {
    border-top: 2px solid #808080;
    border-left: 1px solid #808080;
    border-right: 2px solid #808080;
    float: left;
    cursor: pointer;
    padding: 5px 10px;
    margin: 0px 5px;
}

.SelectedDiv {
    display: block;
}

.UnselectedDiv {
    display: none;
}

/* Overlay */
.overlay {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
    top: 0;
    bottom: 0;
	height: 100%;
	width: 100%;
    cursor: pointer;
    background-color: rgba(0,0,0,0.5);
}

/* Modal Box */
.modal {
	display: none;
	position: absolute;
	background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
}

.modal-header {
    padding: 5px;
    background-color: grey;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.modal-header img {
    float: right;
    max-height: 20px;
    max-width: 20px;
    padding: 5px;
}

.modal-content {
    padding: 2px 5px;
	overflow: auto;
    font-size: 1em;
}

.modal-footer {
    padding: 2px 10px;
    text-align: right;
    font-size: 1em;
}

/* Scroll Data */
.scrollData {
    padding: 5px;
    border-top: 1px solid #AEAEAE;
    text-align: center;
    font-size: 10pt;
}

.scrollData input {
    border: none;
    width: 50px;
    text-align: center;
    background-color: white;
}

/* Floating */
.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

.clearBoth {
	clear: both;
}

/* Text Alignment */
.center {
	margin: auto;
}

.alignLeft { 
    margin-left: 0;
}

.alignCenter {
    text-align: center;
}

.alignRight {
    margin-right: 0;
}

.wordWrap, .wrapText {
    word-break: break-word;
}

/* Global */
.error {
	color: red;
}

.clickable {
    cursor: pointer;
}

/* Toolbar */
.toolbar span {
    font-size: 2em;
}

.toolbar button {
    font-size: 1em;
}

th {
    text-align: left;
}
