/*Estilo princpial para las paginaS con contenido dentro*/


body {
    background-color: rgb(14, 91, 97);
    font-family: system-ui, -apple-system, sans-serif;
    color: #f8fafc;
    margin: 0;
    min-height: 100vh;
    display: flex;

}

.contenedor_centrado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    color: #ffffff;
}

div {
    font-family: inherit;
}

p {
    margin: 0 0 15px 0;
}

label {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
}

/* Estilos generales para inputs y controles */
input[type="number"],
input[type="text"] {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

input[type="number"]:focus,
input[type="text"]:focus {
    border-color: #38bdf8;
}

input[type="checkbox"] {
    accent-color: #38bdf8;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Botones con estilo moderno */
input[type="button"] {
    background-color: #0284c7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

input[type="button"]:hover {
    background-color: #0369a1;
}

input[type="button"]:active {
    transform: scale(0.98);
}

#copy {
    background-color: #0d9488;
    margin-left: 8px;
}

#copy:hover {
    background-color: #0f766e;
}

details {
    color: #0f766e;
}

a {
    padding-right: 20px;
}