/* Grundlegendes Styling für die Statuspage */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #F0F2FC;
    margin: 0;
    padding: 0;
}

/* Container für alles */
.container {
    width: 70%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Logo */
.logo {
    width: 250px;
    display: block;
    margin: 0 auto 20px auto;
}

/* Header Styling */
header {
    text-align: center;
    margin: 0 50px 50px 50px;
}

h1 {
    font-size: 3em;
    color: #0A0052;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.4em;
    color: #0A0052;
}

p {
    color: #0A0052;
    font-size: 1.05em;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Komponentenbereich */
.component-list {
    display: flex;
    flex-direction: column;
}

/* Komponenten Karten */
.component-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px 60px 10px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Komponenten Spalte */
.component-info {
    max-width: 80%;
}

/* Status-Icon */
.status {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px; /* Text verstecken */
}

/* "Ja" Icon */
.status-yes {
    background-image: url('images/check.svg');
}

/* "Nein" Icon */
.status-no {
    background-image: url('images/cross.svg');
}

/* Responsive Anpassung für kleine Bildschirme */
@media (max-width: 600px) {
    .component-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
    }
    .component-info {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .status {
        width: 50px;
        height: 50px;
    }
}
