body {
    background-color: #0a0b1d;
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}

.product-status {
    padding: 40px 0;
    text-align: center;
}

.product-status h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.status-box {
    width: 90%;
    max-width: 1000px;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid;
    font-size: 16px;
}

.status-box p {
    margin: 0;
    font-size: 18px;
}

.status-box img.product-icon {
    width: 20px; /* Resim genişliği (px olarak ayarlanabilir) */
    height: 20px; /* Resim yüksekliği */
    border-radius: 50%; /* Yuvarlak görünüm için */
    margin-right: 10px; /* Metinden biraz boşluk bırakır */
    vertical-align: middle; /* Metinle hizalar */
}


.status-box span {
    font-weight: bold;
}

.status-box.undetected {
    border-color: #4caf50;
    color: #4caf50;
}

.status-box.updating {
    border-color: #ffc107;
    color: #ffc107;
}

.status-box.detected {
    border-color: #f44336;
    color: #f44336;
}

.status-box.maintenance {
    border-color: #2196f3;
    color: #2196f3;
}
