body {
    margin: 0;
    padding: 0;
    background: #eae7e1; /* Beige tone from brand */
    font-family: 'Metropolis', sans-serif;
    color: #414042; /* Dark grey from brand */
}

.wrapper {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 180px;
    margin-bottom: 30px;
}

h1 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 300px;
    justify-content: flex-start;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: auto;
}

.status-dot.up {
    background-color: #414042; /* brand dark grey */
}

.status-dot.down {
    background-color: #f15a22; /* brand orange */
}

.status-dot.up {
    background-color: #79ef00; /* brand orange */
}

.status-text {
    font-size: 14px;
    font-weight: 500;
    margin-left: 6px;
}

.up-text {
    color: #414042;
}

.down-text {
    color: #f15a22;
}

.status-dot.maintenance {
    background-color: #ffa800; /* beige = neutral state */
}

.maintenance-text {
    color: #414042; /* same as operational but labelled differently */
}

.service-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.service-item span {
    font-size: 17px;
    font-weight: 500;
    color: #414042; /* Dark grey */
}

/* ALIGN gets a larger card, thicker border and bigger icon */
.service-align {
    border-width: 2px;
    border-color: #f15a22; /* brand orange */
    background: #fffaf7;   /* subtle warm tint */
    padding: 16px 24px;
    width: 340px; /* bigger than other service rows */
}

/* Bigger icon for Align */
.align-icon {
    width: 48px;
    height: 48px;
}

/* Bigger text for Align */
.align-name {
    font-size: 20px;
    font-weight: 600;
}

