body {
    font-family: 'Roboto', Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-bar {
    width: 100%;
    background-color: rgb(242, 129, 53);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.top-bar h1 {
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.top-bar:before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: linear-gradient(
        to right,
        rgba(255, 140, 80, 0.8),
        rgba(242, 129, 53, 1),
        rgba(255, 140, 80, 0.8)
    );
    z-index: -1;
    border-style: outset;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgba(255, 220, 150, 0.5);
    overflow: hidden;
    box-shadow: 5px 8px 20px 5px rgba(0, 0, 0, 0.3);
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 360px;
    max-width: 100%;
    text-align: center;
    margin-top: 150px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .container {
        width: 600px;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 800px;
    }
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; 
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-row .form-group {
    margin-bottom: 0;
    width: auto;
    flex: 1;
    min-width: 180px;
}

label {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
    box-sizing: border-box;
    text-align: center;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: rgb(242, 129, 53);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #e0712e;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 5px ridge rgba(242, 129, 53, 1);
  /* box-shadow: 5px 4px 8px rgba(255, 255, 255, 0.1);*/
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8)
}

th, td {
    border: 1px solid var(--plustek-color);
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

table tr:first-child th {
    border-top: 1px solid var(--plustek-color);
}

table td {
    border-top: 1px solid var(--plustek-color);
}

table tr:last-child td {
    border-bottom: 1px solid var(--plustek-color);
}

table th:first-child,
table td:first-child {
    border-left: 1px solid var(--plustek-color);
}

table th:last-child,
table td:last-child {
    border-right: 1px solid var(--plustek-color);
}

/* Estilos para tooltip */
.no-drivers {
    position: relative;
    display: inline-block;
}

.no-drivers:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.no-drivers .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
}

.no-drivers .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}



/* Estilos para mensajes de error, correctos e incorrectos */
.error {
    color: red;
    font-weight: bold;
}

.correct {
    color: green;
    font-weight: bold;
}

 @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }

        .incorrect {
            color: red;
            font-weight: bold;
            animation: blink 2s infinite;
        }

/* Estilos adicionales */
:root {
     --plustek-color: rgba(242, 129, 53, 1);
    --b1: #141420;
    --b2: #13131d;
    --c3: #383a51;
    --bg1: #393b52;
    --bg2: #1f2130;
    --r1: #717699;
    --r2: #8286ac;
    --r3: #141420;
}
.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltiptext img {
    width: 200px;
    height: auto;
}

/* Animación de neón 1*/
@keyframes neon {
    0% {
        box-shadow: 1 0 0px rgba(242, 129, 53, 1), 1 0 1px rgba(242, 129, 53, 1), 1 0 2px rgba(242, 129, 53, 1), 1 0 3px rgba(242, 189, 53, 1), 1 0 4px rgba(242, 189, 53, 1), 1 0 8px rgba(242, 189, 53, 1), 1 0 12px rgba(242, 189, 53, 1), 1 0 14px rgba(242, 189, 53, 1);
    }
    100% {
        box-shadow: 0 0 2px #e5991e, 0 0 3px #e5991e, 0 0 4px #e5991e, 0 0 7px #e5991e, 0 0 10px #e5991e, 0 0 13px #e5991e, 0 0 15px #e5991e;
    }
}

input[type="text"].neon {
    animation: neon 1.5s infinite alternate;
}


/* Animación de neón 2
@keyframes neon-border {
    0% {
        box-shadow: 0 0 5px #ed872b, 0 0 10px #ed872b, 0 0 20px #ed872b, 0 0 30px #ed872b;
        outline: 2px ridge #ed872b;
        outline-offset: -2px;
    }
    25% {
        box-shadow: 0 0 10px #f2a53d, 0 0 20px #f2a53d, 0 0 30px #f2a53d, 0 0 40px #f2a53d;
        outline: 2px ridge #f2a53d;
        outline-offset: -2px;
    }
    50% {
        box-shadow: 0 0 5px #ed872b, 0 0 10px #ed872b, 0 0 20px #ed872b, 0 0 30px #ed872b;
        outline: 2px ridge #ed872b;
        outline-offset: -2px;
    }
    75% {
        box-shadow: 0 0 10px #f2a53d, 0 0 20px #f2a53d, 0 0 30px #f2a53d, 0 0 40px #f2a53d;
        outline: 2px ridge #f2a53d;
        outline-offset: -2px;
    }
    100% {
        box-shadow: 0 0 5px #ed872b, 0 0 10px #ed872b, 0 0 20px #ed872b, 0 0 30px #ed872b;
        outline: 2px ridge #ed872b;
        outline-offset: -2px;
    }
}

input[type="text"].neon {
    position: relative;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 20px;
    width: 200px;
    box-sizing: border-box;
    text-align: center;
    background: transparent;
    animation: neon-border 3s infinite linear;
}

*/
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

@keyframes neon-animation {
    0% {
        box-shadow: 0 0 5px #ed872b, 0 0 10px #ed872b, 0 0 20px #ed872b, 0 0 30px #ed872b;
    }
    50% {
        box-shadow: 0 0 10px #f2a53d, 0 0 20px #f2a53d, 0 0 30px #f2a53d, 0 0 40px #f2a53d;
    }
    100% {
        box-shadow: 0 0 5px #ed872b, 0 0 10px #ed872b, 0 0 20px #ed872b, 0 0 30px #ed872b;
    }
}

input[type="text"].neon {
    width: 250px;
    height: 40px;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 1em;
    color: #58c7fa;
    background-color: #ede5df;
    position: relative;
    text-align: center;
    overflow: hidden; 
}

input[type="text"].neon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 6px;
    background-color: transparent;
    box-shadow: 0 0 20px #ed872b, 0 0 40px #ed872b, 0 0 60px #f2a53d, 0 0 80px #f2a53d;
    animation: neon-animation 2s infinite linear;
}

.myButton {
	box-shadow:inset 0px 1px 0px 1px #fff6af;
	background:linear-gradient(to bottom, #ed872b 5%, #ffab23 100%);
	background-color:#ffec64;
	border-radius:6px;
	border:1px solid #ffaa22;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
/*	font-family:Arial;  */
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:1px 1px 0px #000000;
}
.myButton:hover {
	background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
	background-color:#ffab23;
	color:orange;
	text-shadow:1px 1px 0px white;

}
.myButton:active {
	position:relative;
	top:1px;
}

/* plustek color
f28135
*/