* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f7f9;
    color: #333;
}

.topbar {
    height: 90px;
    background: white;
    border-bottom: 4px solid #b4d329;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 72px;
    height: 72px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
}

.spring {
    color: #a6ce39;
}

.cloud {
    color: #444;
}

.eureka {
    display: block;
    color: #222;
}

.company-name {
    color: #95c11f;
    letter-spacing: 2px;
    font-size: 13px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    transition: 0.3s;
}

.menu a:hover {
    color: #a6ce39;
}

.content-wrapper {
    padding: 40px;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.status-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 4px solid #b4d329;
}

.status-card h2 {
    margin-bottom: 20px;
    color: #444;
}

.status-card table {
    width: 100%;
    border-collapse: collapse;
}

.status-card td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.services-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.services-section h2 {
    margin-bottom: 20px;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
}

.service-table thead {
    background: linear-gradient(90deg, #a6ce39, #c1df2d);
    color: white;
}

.service-table th,
.service-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #ececec;
}

.service-table tbody tr:hover {
    background: #f9fbe7;
}

.up {
    color: #7cb518;
    font-weight: bold;
}

.down {
    color: #d90429;
    font-weight: bold;
}

@media(max-width: 992px) {

    .status-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

}
