body,
html {
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

h1,
h2,
h3 {
    color: #e0e0e0;
}

p {
    margin: 10px 0;
    color: #b0b0b0;
}

a,
button {
    color: #007bff;
    text-decoration: none;
}

a:hover,
button:hover {
    text-decoration: underline;
}

.back-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 10px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #0056b3;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    margin: 5px 0;
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    background-color: #e80860;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #a20140;
}

.alert {
    margin-top: 15px;
    padding: 1rem;
    background-color: #4c2c2c;
    color: #e74c3c;
    border-radius: 8px;
}

footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #777;
    text-align: center;
}

.text-gray-500 {
    color: #999;
}

.file-inputs {
    margin-bottom: 10px;
}

.remove-btn {
    background-color: #e80860;
    color: white;
    padding: 6px;
    margin-left: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.remove-btn:hover {
    background-color: #a20140;
}

/* Botón de copia de dirección */
.wallet-item {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    max-width: 90%;
    word-wrap: break-word;
}

.wallet-item:hover {
    background-color: #444;
    border-color: #007bff;
}

/* Texto en el formulario */
label {
    color: #b0b0b0;
}

/* Mensaje de Copiado */
.copy-msg {
    margin-left: 8px;
    font-size: 0.9rem;
    color: #28a745;
    display: inline;
}

.copied {
    display: inline;
    font-weight: bold;
    color: #28a745;
}

.cf-turnstile {
    margin-top: 15px;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    margin: 5px 0;
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    /* Asegura que el padding y el borde no se desborden */
}