:root {
    --primary-color: #0288D1; /* Light Blue 700 */
    --primary-color-hover: #0277BD; /* Light Blue 800 */
    --text-color: #d3cfca;; /* Dark Grey */
    --background-color: #33383a; /* Dark Grey */
    /* Add other color variables as needed */
}

html, input, textarea, select, button, dialog {
    background-color: #181a1b;
    color: var(--text-color); /* Dark Grey */
}

.textbox-container {
    margin-bottom: 10px;
}

body {
    padding: 10px;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color); /* Dark Grey */
}

.full-content {
    display: none;
}

h1 {
    color: rgb(111, 193, 254);
    margin: 5px 0px;
    float: left;
}

button {
    display: inline-block;
    padding: 20px;
    width: auto;
    /* width: 100%; */
    background-color: var(--primary-color); /* Light Blue 700 */
    color: #FFFFFF; /* White */
    text-decoration: none;
    border: none;
    border-radius: 40px;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

#discordData {
    padding-top: 50px;
}

#howToSection {
    display: flex; 
    flex-direction: column
}

.textbox-container-with- {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.textbox-images {
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fab {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    float: left;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }

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

textarea {
    flex-grow: 1;
    display: block;
    /* width: 100%; */
    padding: 10px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    overflow-wrap: break-word;
    white-space: pre-wrap;
    overflow: clip;
    resize: vertical;
}

button:hover, a:hover {
    background-color: var(--primary-color-hover); /* Light Blue 800 */
}

input {
    display: block;
    /* width: 100%; */
    padding: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

video {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.page {
    transition: opacity 0.5s ease;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}


.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 50%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}
  
.active, .collapsible:hover {
    background-color: #555;
}
  
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    /* background-color: #f1f1f1; */
    background-color: rgb(32, 35, 36);
    margin-bottom: 10px;
}

button.collapsible {
    margin-bottom: 10px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    padding: 7px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1000;
}

.image-container-plus {
    width: 40%;
    margin-right: 2%;
}

/* .sceneTime {
    max-width: 5%;
}

.sceneTextboxes {
    width: 90%;
}

.scene-entry-data {
    width: 60%;
}

#availableDataLabels {
    display:flex;
}

#labelOne {
    margin-right: 3%;
}

#labelTwo {
    margin-left: 20%;
    margin-right: 20%;
}

#labelThree {
    margin-left:7%;
}

#labelFour {
    margin-left:7%;
}

#labelFive {
    margin-left:13%;
} */