/* Diseño modernizado con mejor integración de colores */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #181825, #232336);
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor principal */
.container {
    width: 90%;
    max-width: 400px;
    background: #1e1e2e;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Título */
h1 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;

}

p {
    font-size: 14px;
    color: #ccc;
}

/* Formulario: input y botón alineados */
.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 6px;
    background: #252537;
    color: #fff;
    outline: none;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* Botón alineado con input */
button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #4CAF50;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    box-sizing: border-box;
}

button:hover {
    background: #45a049;
}

/* Contenedor de resultados */
#results {
    margin-top: 20px;
    background: #252537;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

/* Tabla de tokens */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background: #333;
    color: #fff;
}

td {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsividad */
@media (max-width: 480px) {
    .container {
        width: 95%;
        max-width: 350px;
    }
}

.input-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.input-container input {
    flex: 1;
    padding: 8px;
}

.input-container button {
    padding: 8px 12px;
}

/* Centrar footer en la parte inferior */
footer {
    position: fixed;
    bottom: 50px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Estilo para los enlaces de los airdrops */
a {
    text-decoration: none; /* Elimina el subrayado */
    color: inherit; /* Hereda el color del texto para que no sea azul */
}

/* Estilo para el hover (cuando el usuario pasa el mouse sobre el enlace) */
a:hover {
    color: #007bff; /* Cambia el color a un azul suave cuando el usuario pasa el ratón */
    text-decoration: underline; /* Agrega subrayado solo cuando el ratón pasa sobre el enlace */
}

