/* style_main.css */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

.app-header {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.header-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    box-sizing: border-box;
}

h1 {
    color: #004085;
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

/* Estilos para la sección de selección de tipo de documento */
.selection-area {
    text-align: center;
    margin-bottom: 30px;
}

.selection-area label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #34495e;
    font-size: 1.1em;
}

.selection-area select {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 15px;
    max-width: 300px; /* Limitar el ancho del select */
}

.btn-load-form { /* Renombrado para este contexto */
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-load-form:hover {
    background-color: #0056b3;
}

.app-footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #6c757d;
    text-align: center;
    width: 100%;
}

@media (max-width: 600px) {
    .main-wrapper {
        padding: 15px;
    }
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 22px;
    }
}