
html {
    height: 100%;
    background-color: #1c1c1c;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1c1c1c url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    max-width: 900px;
    width: 100%;
    height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px 60px;
    box-sizing: border-box;

    /* Scrollbar verstecken */
    scrollbar-width: none;
}
.container::-webkit-scrollbar {
    display: none;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 24px;
    margin: 0;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
    text-align: center;
}

.site-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1f1f1;
}

.domain {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.description {
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
}

.status {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: bold;
    text-transform: uppercase;
    width: fit-content;
    margin-top: 10px;
    align-self: flex-end;
}

.status.online {
    background-color: #2ecc71;
    color: #fff;
}

.status.offline {
    background-color: #e74c3c;
    color: #fff;
}

.status.working {
    background-color: #f39c12;
    color: #fff;
}

.status.coding {
    background-color: #8e44ad;
    color: #fff;
}

.status.planned {
    background-color: #7f8c8d;
    color: #fff;
}


@media (min-width: 768px) {
    .site-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .site-item .left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .status {
        margin-top: 0;
        align-self: auto;
    }
}

.main-label {
    background-color: rgba(255,255,255,0.2);
    font-size: 10px;
    padding: 3px 8px;
    margin-left: 10px;
    border-radius: 12px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    backdrop-filter: blur(5px);
}

.domain {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-item.main-separator {
    margin-bottom: 20px;
}
