/* global css file: Each element in the app has access to this */
/* 
What is defined here:
    elements that should look alike globally
    classes that should look alike globally
*/

/*
Variables for the global css.
To access them: var(<name>)
*/
:root {
    --text-color: whitesmoke;
    --background: black;
    /* items are elements like buttons and inputs */
    --background-items: #494949;
    --text-hover-color: #494949;
}
.main {
    font-size: 14pt;
    padding: 1%;
}
.content-box {
    padding: 1%;
}
.content-box-foldable {
    padding: 1%
}
button {
    color: var(--text-color);
    background-color: var(--background-items);
}
input {
    width: 100%;
    display: block;
    color: var(--text-color);
    background-color: var(--background-items);
}
submit {
    color: var(--text-color);
    background-color: var(--background-items);
}

/* used in /routes/protected/hypixel */
.dropdown {
    position: absolute;
    background: var(--background-items);
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  tr:nth-child(even) {
    background-color: var(--background-items);
  }