/* Reset básico para normalizar la apariencia entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Definición de fuentes */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Fondo oscuro */
    color: #f4f4f4; /* Texto claro para contraste */
    line-height: 1.6;
    padding: 20px;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    color: #ecf0f1; /* Color claro para los encabezados */
    font-weight: bold;
    margin-bottom: 15px;
}

/* Encabezado */
header {
    text-align: center;
    background-color: #2980b9; /* Color de fondo del encabezado */
    padding: 20px;
    color: #fff;
    margin-bottom: 30px;
}

/* Título principal */
#incident-investigation {
    font-size: 2.5rem;
}

/* Secciones */
section {
    margin-bottom: 40px;
}

/* Introducción y otros párrafos */
p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd; /* Color de texto más suave */
}

/* Encabezados de secciones */
h2 {
    border-bottom: 2px solid #2980b9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Listas y orden de elementos */
ol, ul {
    margin-left: 20px;
    color: #f4f4f4; /* Color claro para listas */
}

li {
    margin-bottom: 10px;
}

/* Estilo para tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1e1e1e; /* Fondo oscuro para tablas */
    color: #ecf0f1; /* Texto claro en la tabla */
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #444; /* Bordes oscuros para celdas */
}

th {
    background-color: #2980b9;
    color: white;
}

/* Estilo para imágenes */
figure {
    margin-bottom: 30px;
}

img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 2px solid #444; /* Bordes oscuros para imágenes */
    border-radius: 8px;
    margin-bottom: 10px;
}

figcaption {
    font-size: 0.9rem;
    color: #bbb; /* Color más suave para pie de imagen */
    text-align: center;
}

/* Código */
code {
    font-family: 'Courier New', monospace;
    background-color: #333; /* Fondo oscuro para el código */
    color: #f4f4f4; /* Texto claro para el código */
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    margin-top: 30px;
}

footer p {
    font-size: 0.9rem;
}

footer a {
    color: #2980b9;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Repositorio de evidencias */
#repositorio {
    background-color: #1e1e1e; /* Fondo oscuro para el repositorio */
    padding: 20px;
    border-radius: 8px;
}

#repositorio a {
    color: #2980b9;
    text-decoration: none;
}

#repositorio a:hover {
    text-decoration: underline;
}

/* Diseño responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header {
        padding: 10px;
    }

    #incident-investigation {
        font-size: 2rem;
    }

    img {
        max-width: 100%;
    }
}
