/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 10px;
    display: flex;
    justify-content: center;
}

/* Content Wrapper */
.container {
    max-width: 700px;
    width: 100%;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert-icons {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    font-size: 5rem;
}

/* Headings */
 h1 {
    font-size: 2rem;
    text-align: center;
}

 h2 {
    font-size: 1.6rem;

}

h1, h2 {
    color: #444;
    margin-bottom: 10px;
}

.legal-disclaimer {
    font-size: 0.7rem;
}
.red {
    color: red;
}

/* Links */
a {
    color: #0077cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #ccc;
    margin: 10px 0;
    padding: 10px;
    background: #f1f1f1;
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin: 2rem 0;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.timeline-chunk {
    margin:0 0 1rem 0;
}

hr {
    margin: 1rem 0;
}

span.red {
    color: red;
}

#back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

ul {
    margin: 1rem 0;
}

li {
    margin: 0.5rem 0;
}

/* Hide Button Initially */
#back-to-top.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

/* Button Hover Effect */
#back-to-top:hover {
    background-color: #005fa3;
}

.evidence-element {
    margin: 1rem 0;
}

/* Responsive Styling for Small Screens */
@media (max-width: 300px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    blockquote {
        padding: 8px;
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.8rem;
    }
}


p.yellow {
    padding: 1rem;
    background-color: yellow;
}