/* --- TEHIX UREĐAJI (DEVICES) PANEL --- */
.mda-device-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 8px;
    /* Dodano zbog hovera i istaknutog uređaja */
    margin-bottom: 5px;
}

.mda-device-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #24252b;
    /* Tamnija pozadina po defaultu */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mda-device-info {
    flex-grow: 1;
}

.mda-device-name {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.mda-device-meta {
    color: #b0b0d0;
    font-size: 13px;
}

.mda-device-logout-btn {
    background: transparent;
    border: none;
    color: #b0b0d0;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mda-device-logout-btn:hover {
    color: #f04747;
    /* Crvena boja na hover za brisanje */
    background: rgba(240, 71, 71, 0.1);
}


/* --- TRENUTNI UREĐAJ HIGHLIGHT --- */
.mda-current-device {
    background: #725fa921;
    /* Vrlo blaga blurple/ljubičasta pozadina */
    border: 1px solid #715fa9;
}

.mda-current-device .mda-device-icon {
    background-color: #715fa9;
    /* Tvoja brand boja (npr. Discord blurple ili stavi svoju) */
    color: #fff;
}

.mda-device-badge {
    background: #23a559;
    /* Discord Online zelena */
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}