/* General Styles */
html,
body {
    height: 100%;
    width: 100%;
    background-color: #f0f0f0;
    color: black;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.5s ease, color 0.5s ease;
}

header {
    width: 100%;
    height: 70px;
    padding: 10px 0;
    background-color: #c8c8c8;
    position: fixed;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#darkModeToggle {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #7d7d7d;
    position: fixed;
    top: 70px;
    z-index: 9;
}

main {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-panel {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease;
}

.darkLightText {
    color: #646464;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.center {
    align-self: center;
    text-align: center;
    align-items: center;
    vertical-align: middle;
}

.hidden {
    display: none;
}


select {
  background-color: #afafaf;
  border-color: black;
  border-radius: 5px;
}
select:hover {
  cursor: pointer;
}

/* Dark Mode Styles */
html.dark-mode,
body.dark-mode {
    background-color: #1e1e1e;
    color: white;
}

header.dark-mode {
    background-color: #282828;
    color: white;
}

.card-panel.dark-mode {
    background-color: #282828;
    color: white;
}

.divider.dark-mode {
    background-color: #afafaf;
}
