body {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 20px;
    background: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

hr{
    max-width:1200px;
    margin-top:25px;
    margin-bottom:25px;
    color: aliceblue;
}

/* Service Card Styles */
.service-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.service-name {
    font-weight: bold;
    font-size: 1.2em;
    color: #0056b3;
}

.desc {
    font-size: 0.9em;
    color: #666;
    flex: 1;
    margin: 0 20px;
}

/* Status Dot Styles */
.status-dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.status-up {
    background-color: #2ecc71;
    box-shadow: 0 0 5px #2ecc71;
}

.status-down {
    background-color: #e74c3c;
    box-shadow: 0 0 5px #e74c3c;
}

.status-maint {
    background-color: #f1c40f;
}

.status-unknown {
    background-color: #95a5a6;
}

/* Button and Tags */
.btn {
    text-decoration: none;
    background: #0056b3;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
}

.btn:hover {
    background: #004494;
}

.tag {
    font-size: 0.7em;
    background: #e0e0e0;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.tag_internal {
    background: #b6ffa2ff;
    color: #2d5a27;
}

.tag_external {
    background: #ff8686ff;
    color: #5a1a1a;
}