body {
    font-family: 'Arial', sans-serif;
    background: #f0f2f5;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

button {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 100%;
    margin-bottom: 20px;
}

button:hover {
    background: #2980b9;
}

.seccion {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

h2 {
    color: #34495e;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.campo {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.campo label {
    flex: 0 0 120px;
    font-weight: bold;
    color: #7f8c8d;
}

.copiable {
    flex: 1;
    margin: 0 15px;
    color: #2c3e50;
    padding: 5px;
}

.copiarBtn {
    background: #27ae60;
    border: none;
    padding: 5px 8px; /* Ajustado para hacerlo más compacto */
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
    font-size: 12px; /* Tamaño de fuente reducido */
    display: flex;
    align-items: center; /* Centra el contenido verticalmente */
    justify-content: center; /* Centra el contenido horizontalmente */
    height: 30px; /* Tamaño fijo para altura */
    width: 30px; /* Tamaño fijo para ancho */
}

.copiarBtn:hover {
    background: #219a52;
}

.copiarBtn i {
    color: white;
    font-size: 14px; /* Asegura que el ícono sea visible */
}
