
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
   
    color: #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-bottom: 20px;
    color: #1a73e8;
    font-size: 28px;
}

img{
    width: 800px;
    border-radius: 12px;
    
    max-width: 100%;
}

input[type="text"] {
    padding: 16px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 436px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus {
    border-color: #1a73e8;
    outline: none;
}

button#disabled {
    cursor: not-allowed;
    margin-left: 8px;
    padding: 10px 16px;
    background-color: lightgray;
    color: gray;
    border: none;
    border-radius: 6px;
    font-size: 15px;

}

button {
    margin-left: 8px;
    padding: 10px 16px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.2s;

}

button:hover {
    background-color: #0f5ec4;
}

button:active {
    background-color: #0a4ea3;
}


h3 {
    margin: 40px 0 10px;
    font-size: 22px;
}

#estado{
    color: red;
    text-align: left;
    margin-bottom: 4px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: bold;
    width: 436px;
    padding: 10px;
    text-align: left;

}

#divLista {
    width: 436px;
    background: white;
    padding: 16px 40px;
    border-radius: 10px;
    border: 1px solid #ddd;
    min-height: 100px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}


#divLista li {
    padding: 16px 16px;
    background: #e4eefc;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
}

.msg-error {
    color: red;
    font-weight: bold;
    white-space: pre-line;
}

.msg-ok {
    color: green;
    font-weight: bold;
    white-space: pre-line;
}
.msg-warning {
    color: orange;
    font-weight: bold;
    white-space: pre-line;
}
