/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

h2 {
    color: #0056b3;
}

fieldset {
    border: 1px solid #ccc;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    font-size: 125%;
}

legend {
    font-weight: bold;
    color: black;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    margin-left: 1.5rem; /* Added left margin */
}

ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ccc;
}

ul li:last-child {
    border-bottom: none;
}

ul li a {
    text-decoration: none;
    color: #007bff;
    display: flex;
    align-items: center;
}

ul li a img {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

ul li a:hover {
    text-decoration: underline;
}

/* Estilo específico para el texto del timestamp */
.timestamp {
    font-size: 14px;
    color: #555;
    font-style: italic;
    margin-left: 1.5rem;
}