html, body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: #000;
    font-style: normal;
}

table.dataTable tbody th, table.dataTable tbody td {
    vertical-align: middle !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

html {
    box-sizing: border-box
}

*, :after, :before {
    box-sizing: inherit
}

.gamesTable_paginate {
	float: unset;
}

.game-grid img {
    width: 140px;
	min-width: 140px;
	margin: auto;
	padding: 5px;
}
		
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    background-color: rgba(255,255,255,.2);
    padding: 2px !important;
    margin-bottom: 0 !important;
    border-radius: 0;
}

.breadcrumb a {
    /*all: unset;*/
    padding: 2px;
}

.game-grid {
    align-content: start;
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    flex-direction: unset;
    padding: 10px;
    position: relative;
}


.game-item {
	align-items: center;
	justify-content: space-between;
    border: 1px solid #4a4a4a;
    border: 1px solid rgba(76, 76, 76, .7);
	background: rgba(255,255, 255, .2);
    border-radius: 10px;
    color: #fff;
    display: flex;
	flex-flow: column;
    flex: 0 0 170px;
    margin: 3px 5px;
	padding: 5px;
    outline: 1px solid transparent;
    overflow: hidden;
	color: #fff;
    line-height: 1.4;
}

.toolbar-item {
	align-items: center;
	justify-content: space-between;
    border: 1px solid #4a4a4a;
    border: 1px solid rgba(76, 76, 76, .7);
	background: rgba(255,255, 255, .2);
    border-radius: 10px;
    color: #fff;
    display: flex;
	flex-flow: row;
	padding: 5px;
	padding-right: 10px;
    outline: 1px solid transparent;
    overflow: hidden;
	color: #fff;
    line-height: 1.4;
}

.title {
    font-size: 16px;
	padding: 2px;
	text-align: center;
    font-weight: bold;
	min-width: 100%;
	background-color: rgba(0,0,0,0.5);
    white-space: white-space;
}

.line {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	min-width: 100%;
}

.line div:first-child {
	font-weight: bold;
}

.text-center {
    text-align: center !important
}

hr {
    border-style: none;
    border-width: 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #eaeaea;
    height: 0;
    margin: 23px 0 18px;
}

:root {
    --sidebar-width: 280px;
    --sidebar-width-collapsed: 80px;
}

.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: teal;
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: var(--sidebar-width-collapsed);
}

.sidebar-link {
	color: white;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.sidebar-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.logo-text {
	display: flex;
	justify-content: center;
	margin: 2px;
    transition: opacity 0.5s ease;
}

.notification-badge {
    background: #ff6b6b;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.7rem;
}

.profile-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-self: start;
	width: 100%;
	align-content: start;
}

main {
    margin-left: calc(var(--sidebar-width) + 16px);
    background-color: #f8f9fa;
	flex-grow: 1;
    min-height: 100vh;
    transition: all 0.3s ease;
}

.collapsed~main {
    margin-left: calc(var(--sidebar-width-collapsed) + 16px);
}

.toggle-btn {
    position: absolute;
    right: -15px;
    top: 20px;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 100;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.collapsed .toggle-btn {
    transform: rotate(180deg);
}

.collapsed .hide-on-collapse {
    opacity: 0;
    visibility: hidden;
	display: none;
}

.collapsed .nav {
	display: flex;
	align-self: center;
}

.collapsed .profile-info {
    opacity: 0;
}

.collapsed .sidebar-link {
    text-align: center;
    padding: 1rem !important;
}

.collapsed .sidebar-link i {
    margin: 0 !important;
}

.profile-info {
    transition: opacity 0.2s ease;
}

.profile-section img {
	height: 60px;
}

.collapsed .profile-section {
	width: var(--sidebar-width-collapsed);
	justify-content: center;
	transition: opacity 0.2s ease;
}
