.colors {
    background-color: #212542;
    background-color: #303853;
    background-color: #EDEFFC;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    background-color: #212542;
}

.header {
    background-color: transparent;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #303853;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.header_left {
    background-color: transparent;
    width: calc(100% - 150px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 20px;
}

.workplace {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: none;
}

.header_right {
    background-color: transparent;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.sign_out_button {
    background-color: transparent;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-right: 20px;
    color: #EDEFFC;
    cursor: pointer;
    user-select: none;
    padding: 3px 5px;
    transition: 0.07s ease;
}

.sign_out_button:hover {
    background-color: #303853;
}

.webname {
    background-color: transparent;
    background-image: url(./icons/logo.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 200px;
    min-height: 100%;
    display: block;
    margin-left: 20px;
    user-select: none;
    cursor: pointer;
}

.buttons_whole_backer {
    display: flex;
    width: fit-content;
    height: fit-content;
    gap: 20px;
}

#header_elements {
    background-color: transparent;
    color: #EDEFFC;
    font-size: medium;
    cursor: pointer;
    font-family: roboto;
    padding: 3px 5px;
    border-radius: 5px;
    transition: 0.07s ease;
    user-select: none;
    display: flex;
}

#header_elements:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: #02ae50;
}

.tabel_button {
    background-color: transparent;
    color: #EDEFFC;
    font-size: medium;
    cursor: pointer;
    font-family: roboto;
    padding: 3px 5px;
    border-radius: 5px;
    transition: 0.07s ease;
    user-select: none;
    display: none;
}

.tabel_button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: #02ae50;
}

.admin_tools_backer {
    background-color: transparent;
    width: fit-content;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 20px;
}

.loading_sign {
    background-color: rgba(6, 10, 22, 0.55);
    transition: opacity .18s ease, transform .18s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1000000;
    pointer-events: all;
}

.loading_circle {
    background-image: url(../icons/loading.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header_section_2 {
    border: none;
    color: #EDEFFC;
    font-size: medium;
}

.header_section_2:focus {
    outline: none;
    background-color: #303853;
    color: black;
}

.header_section_2 option {
    color: white;
    background-color: #303853;
}

.header_section_2 option[selected] {
    color: black;
    background-color: white;
}

.header_section_2:disabled {
    background-color: white !important;
    color: black !important;
}

.header_section_2:active {
    background-color: white;
    color: black;
}

.main_menu_selectable {
    display: none;
    height: 30px;
    width: 80px;
    padding: 0 10px;
    margin-right: 20px;
    background-color: transparent;
    transition: 0.5s ease;
    color: #EDEFFC;
    font-size: medium;
    cursor: pointer;
    font-family: roboto;
    padding: 3px 5px;
    border-radius: 5px;
    transition: 0.07s ease;
    user-select: none;
}

.main_menu_selectable:focus {
    outline: none;
    background-color: #303853;
    color: white;
    width: 130px;
}

.main_menu_selectable option {
    color: white;
    background-color: #303853;
}

.main_menu_selectable option[selected] {
    color: black;
    background-color: white;
}

.main_menu_selectable:disabled {
    background-color: white !important;
    color: black !important;
    width: 80px;
}

.main_menu_selectable:active {
    background-color: white;
    color: black;
}

.webvalue {
    background-color: transparent;
    font-family: roboto;
    font-size: small;
    color: rgba(255, 255, 255, 0.151);
    position: absolute;
    margin-right: 5px;
    margin-bottom: 5px;
    z-index: 100;
    user-select: none;
    pointer-events: none;
}

#player {
    display: "none";
}











.tech {
  position: fixed;
  inset: 0;
  background-color: #12141f;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999999999999999;
  font-family: 'Courier New', Courier, monospace;
  user-select: none;
}

.tech_card {
  background-color: #1e1f2d;
  border: 2px solid #ff4c4c;
  color: #ff4c4c;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(255, 76, 76, 0.5), 0 0 40px rgba(255, 76, 76, 0.2);
  animation: flicker 1.5s infinite alternate;
}

.tech_icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tech_text {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.tech_subtext {
  font-size: 0.9rem;
  color: #ff7676;
}

@keyframes flicker {
  0% { opacity: 1; }
  20% { opacity: 0.85; }
  40% { opacity: 0.9; }
  60% { opacity: 0.95; }
  80% { opacity: 0.9; }
  100% { opacity: 1; }
}
