/* style.css - Global Dark Theme */

body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #ffffff;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
}

p {
    color: #aaaaaa;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 2rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: #121212;
    border-radius: 6px;
    border-left: 4px solid #00adb5;
}

li ul {
    margin-top: 0.75rem;
    padding-left: 1rem;
}

li ul li {
    background-color: #1a1a1a;
    border-left: 3px solid #666666;
    font-family: monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.75rem;
}

a {
    color: #00adb5;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #22a699;
    border-bottom: 1px solid #22a699;
}
/* Center and scale the logo image */
.logo-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0; /* Adds nice spacing above and below the logo */
}

.logo-container img {
    max-width: 220px; /* Forces the image to a compact size under the title */
    width: 100%;
    height: auto;
    display: block;
}
