body {
    background-color: rgb(73, 73, 73);
    color: #f2f2f2;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
}

h2 {
    color: #ffcc00;
}

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

th, td {
    border: 1px solid #696969;
    padding: 10px;
    text-align: left;
}

.status-banner {
    background-color: #3a3a3a;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #999;
}

.online {
    color: limegreen;
    font-weight: bold;
}

.offline {
    color: crimson;
    font-weight: bold;
}

.msg {
    background-color: #ffeecc;
    border: 1px solid #cc9900;
    padding: 10px;
    margin-bottom: 15px;
    display: inline-block;
}

/* 🎯 ICON-BUTTON STYLE */
.icon-btn {
    background: none;
    border: none;
    padding: 4px;
    margin: 3px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.icon-btn img {
    height: 32px;
    width: auto;
}

.icon-btn:hover {
    transform: scale(1.05);
}

.server-cell {
    background-color: #2f2f2f;
    border: 1px solid #555;
    border-radius: 20px;
    height: 50px;
    color: white;
    font-weight: bold;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background-color: #2f2f2f;
    border: 1px solid #555;
    border-radius: px;
    width: 160px;
    height: 160px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.project-card:hover {
    transform: scale(1.05);
    background-color: #595f6e;
}

.project-icon {
    height: 64px;
    margin-bottom: 10px;
}

/* 🎯 Einheitliche Größe für Zurück-Button */
.back-btn {
    height: 32px;
    width: auto;
    cursor: pointer;
}
