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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #ff2a2a;
    padding-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #ff2a2a;
    margin-bottom: 10px;
}

h2 {
    color: #ff2a2a;
    margin-top: 30px;
    font-size: 1.5em;
}

p {
    margin: 10px 0;
}

a {
    color: #ff2a2a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #333;
    margin-bottom: 5px;
}

.service-name {
    font-weight: bold;
}

.service-status {
    color: #ffaa00;
    font-style: italic;
}

.service-link {
    color: #ff2a2a;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #ff2a2a;
}
