@font-face {
    font-family: 'Exocet2';
    src: url('Exocet2.ttf') format('truetype');
    font-weight: normal;
    font-style: small;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
pre {
    color: gray;
    border: 1px solid gray;
    padding: 10px;
	text-align: left;
}

.modal-content {
    background-color: black;
    color: white;
	border: 1px solid gray;
}
.scrollable-div {
  max-height: 600px; /* Adjust the height as needed */
  overflow-y: auto;
  scrollbar-width: none; /* Remove scrollbar for Firefox */
  -ms-overflow-style: none; /* Remove scrollbar for IE and Edge */
}

/* Hide scrollbar for WebKit based browsers (Chrome, Safari) */
.scrollable-div::-webkit-scrollbar {
  display: none;
}

.navbar {
    display: flex;
    align-items: left;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.dropdown-menu {
    right: 0;
    left: auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-item {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #666;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.dropdown-toggle:hover {
    background-color: #666;
}

.login-container label {
    color: white;
}
body {
    color: white;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.login-container h1,
.login-container form,
.login-container button {
    margin-bottom: 10px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    background-color: gray;
    padding: 10px;
    min-width: 150px;
    display: none;
    z-index: 1000;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    background-color: gray;
    display: block;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #666;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transition: all 0.5s ease;
}

.code-block {
    background-color: #f4f4f4;
    border-radius: 5px;
    margin: 20px 0;
    padding: 20px;
    overflow: auto;
    height: 200px;
}

.code-block code {
    font-family: "Courier New", Courier, monospace;
    color: #333;
    display: block;
    white-space: pre-wrap;
}

.navbar {
    background-color: #333;
    border: none;
}

body,
html {
    background-color: black !important;
}

.navbar-brand {
    font-size: 2rem;
    color: #fff;
    font-family: 'Exocet2', sans-serif;
}

.nav-link {
    color: #bd2026;
    font-family: 'Exocet2', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: 'Exocet2', sans-serif;
    text-shadow: 2px 2px 2px #000;
}

p,
a {
    font-family: 'Exocet2', sans-serif;
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.form-control {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.btn-primary {
    background-color: #bd2026;
    border-color: #bd2026;
    font-family: 'Exocet2', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-primary:hover {
    background-color: #8b161c;
    border-color: #8b161c;
}

.btn-secondary {
    background-color: #333;
    border-color: #333;
    font-family: 'Exocet2', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

details {
    border: 1px solid white;
    padding: 10px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#navbar {
    background-color: #333;
    padding: 1rem;
}

#content {
    padding: 1rem;
}

.assign-games {
    background-color: #333;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    color: #fff;
}

.section {
    background-color: #333;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    color: #fff;
}
	.columns {
		display: flex;
		justify-content: space-between;
	}

/* Navbar */
.navbar {
    display: flex;
    align-items: left;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-item {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #666;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.dropdown-toggle:hover {
    background-color: #666;
}

.dropdown-menu {
    right: 0;
    left: auto;
    position: absolute;
    top: calc(100% - 1px);
    background-color: gray;
    padding: 10px;
    min-width: 150px;
    display: none;
    z-index: 1000;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    background-color: gray;
    display: block;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #666;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transition: all 0.5s ease;
}

/* Login Form */
body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.login-container h1,
.login-container form,
.login-container button {
    margin-bottom: 10px;
}

.login-container label {
    color: white;
}

/* General Styles */
.code-block {
    background-color: #f4f4f4;
    border-radius: 5px;
    margin: 20px 0;
    padding: 20px;
    overflow: auto;
    height: 200px;
}

.code-block code {
    font-family: "Courier New", Courier, monospace;
    color: #333;
    display: block;
    white-space: pre-wrap;
}

body,
html {
    background-color: black !important;
}

.navbar-brand {
    font-size: 2rem;
    color: #fff;
    font-family: 'Exocet2', sans-serif;
}

.nav-link {
    color: #bd2026;
    font-family: 'Exocet2', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: 'Exocet2', sans-serif;
    text-shadow: 2px 2px 2px #000;
}

p,
a {
    font-family: 'Exocet2', sans-serif;
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.form-control {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.btn-primary {
    background-color: #bd2026;
    border-color: #bd2026;
    font-family: 'Exocet2', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-primary:hover {
    background-color: #8b161c;
    border-color: #8b161c;
}

.btn-secondary {
    background-color: #333;
    border-color: #333;
    font-family: 'Exocet2', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

details {
    border: 1px solid white;
    padding: 10px;
}

.assign-games,
.section {
    background-color: #333;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    color: #fff;
}

.assign-games h2,
.section h2 {
    margin-top: 0;
}

.columns {
    display: flex;
    justify-content: space-between;
}

.column {
    flex: 1;
}

.column:last-child {
    margin-left: 1rem;
}

.countdown-container {
    display: flex;
    align-items: center;
}

#countdown {
    color: white;
    margin-right: 20px;
}

.request-button {
    display: inline-block;
}

.diablo2-progress-bar {
    font-family: 'Exocet', fantasy; /* Exocet is the font similar to the one used in Diablo II */
    color: #e8e2b7; /* Gold color text */
    background-color: #000; /* Dark background */
    border: 2px solid #804000; /* Brown border */
    padding: 5px;
    max-width: 600px; /* Adjust as needed */
    margin: 20px;
}

.progress {
    background-color: #4d0000; /* Dark red background */
    border: 1px solid #804000; /* Brown border to match overall style */
    position: relative;
    height: 20px;
    border-radius: 3px;
}

.progress-bar {
    background: linear-gradient(90deg, #ff0000, #a80000); /* Gradient for the progress bar */
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.4s ease;
}

.progress-text {
    text-align: center;
    margin-bottom: 5px;
}