/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 10 Oct 2025, 12:54:11
    Author     : Owner
*/

body, html {
    height: 100%;
    margin: 0;
    font-family: Helvetica;
}

p {
    color: blue;
    font-family: arial;
    font-size: 100%;
    margin: 5px;
}

h2 {
    color: blue;
    font-family: arial;
    font-size: 100%;
    font_weight: bold;
    margin: 5px;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 1rem;    /* Footer height */
}

.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  color: blue;
  font-size: 8px;
  text-align: center;
  height: 1rem;
}


.cookies_panel {
    background-color: white;
    color: blue;
    padding: 1px;
    /*justify-content: space-evenly;
    justify-items: center; */
    margin: 5px;
}

.cookies_panel input[type=text]{
    padding:0;
}
.cookies_panel input[type=text]:focus {
    background-color: lightblue;
    padding: 1px;
}

/* Answer grid css */
/*.container {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: dodgerblue;
    padding: 0;
}
.container div {
    background-color: #f1f1f1;
    border: 1px solid black;
    padding: 0;
    font-size: 20px;
    text-align: center;
}*/

/*  Answer Grid display  */

.grid {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.grid input {
    width: 100%;
    padding: 1px;
    box-sizing: border-box;
    border:1px solid #ccc;
    outline: none;
    text-align: center;
    font-size: 14px;
    color: blue;
    overflow: hidden;
    text-overflow: ellipsis;
}

.grid input:focus {
    border: 1px solid #555;
}

.empty {
}

.wrong {
    background-color: pink;
}

.right {
    background-color: palegreen;
}

.helped {
    background-color: palegoldenrod
}

/*.grid input:hover {
    scale: 2;
    z-index: 2;
    box-shadow:0 0 50px 20px rgba(0, 0, 0, 0.5);
    font-size: 10px;
    background-color: white;
}*/

.grid input:focus {
    scale: 2;
    z-index: 2;
    box-shadow:0 0 50px 20px rgba(0, 0, 0, 0.5);
    font-size: 10px;
    background-color: white;
}

/* Buttons css */
.main_button {
    background-color: blue;
    border: none;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
}

.buttonsgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 10px auto;
}

.play_button {
    margin: 10px 0;
    max-width: 200px;
}

.help_once_button {
    margin: 10px 10px;
    background-color: lightblue;
    max-width: 50px;
}

.disabledbtn {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Tabs display css */

/* Style tab links */
.tablink {
    background-color: lightblue;
    color: white;
    float: left;
    border: 1px;
    border-style: solid;
    outline:blue;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;
    width: 25%;
}

.tablink:hover {
    background-color: blue;
}

.tablink:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: lightblue;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
    color: blue;
    display: none;
    padding: 35px 5px;
    height: 100%;
}

