.device-active-list {
    max-width: 400px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.device-active-list h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.device-list {
    margin-top: 10px;
}

.device-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F6FAFF;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.device-card:hover {
    background: #eef4ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.device-icon {
    font-size: 30px;
    color: #007bff;
    margin-right: 10px;
}

.device-info {
    flex: 1;
}

.device-info h4 {
    font-size: 1rem;
    margin: 0;
}

.device-info p {
    margin: 0;
    font-size: 0.85rem;
}

.device-card .logout-btn {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.device-card .logout-btn:hover {
    background-color: #b51e2b;
}
