/* Base styles for Health Check Dashboard */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
}

#services-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Service card styles */
.service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.service-status {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Status indicators */
.service.up .service-status {
    background-color: #22c55e;
    color: #ffffff;
}

.service.down .service-status {
    background-color: #ef4444;
    color: #ffffff;
}
