.info-box {
    position: fixed;
    right: 0;
    width: 75px;
    height: 75px;
    z-index: 9999;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: background-color 0.3s ease;
}

.info-box.active {
    background-color: #006400; /* Koyu yeşil */
}

.info-box.inactive {
    background-color: #8B0000; /* Koyu kırmızı */
}

.info-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 12px;
    line-height: 1.3;
}

.info-item {
    text-align: center;
    margin: 2px 0;
    font-weight: bold;
}

.notification-box {
    position: absolute;
    left: -18px;
    top: 5px;
    width: 20px;
    height: 65px;
    background-color: #0071BC;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: white;
    overflow: hidden;
}

.close-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.2);
}

.status-text {
    height: 45px;
    margin-top: 15px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-align: center;
    width: 100%;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

/* Mobil cihazlar için düzenlemeler */
@media screen and (max-width: 768px) {
    .info-box {
        width: 60px;
        height: 60px;
    }

    .info-item {
        font-size: 10px;
    }

    .notification-box {
        height: 55px;
    }

    .close-button {
        height: 12px;
        font-size: 12px;
    }

    .status-text {
        height: 40px;
        margin-top: 12px;
        font-size: 9px;
    }
}
