/* Relevant — Account Fleet UI */
.rfleet { max-width: 980px; }

.rfleet-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.rfleet-card__head{ margin-bottom:14px; }
.rfleet-title{ margin:0 0 6px; font-size:22px; font-weight:800; color:#033D3D; }
.rfleet-sub{ margin:0; color:#4b6060; line-height:1.5; }

.rfleet-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

@media (max-width: 900px){
  .rfleet-grid{ grid-template-columns:1fr; }
}

.rfleet-device{
  border:1px solid rgba(14,119,119,.14);
  border-radius:16px;
  padding:14px 14px 12px;
  background:linear-gradient(180deg,#ffffff,#f7fbfb);
}

.rfleet-device__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.rfleet-device__serial{
  font-size:16px;
  font-weight:800;
  color:#033D3D;
  letter-spacing:.2px;
}

.rfleet-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(14,119,119,.18);
  background:#ffffff;
  color:#0E7777;
}

.rfleet-device__meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px 12px;
  color:#375151;
  font-size:13px;
  margin-bottom:12px;
}

.rfleet-device__meta span{ color:#6a7f7f; font-weight:700; margin-right:6px; }

.rfleet-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.rfleet-actions--wide{
  margin-top:14px;
}

.rfleet-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  text-decoration:none !important;
  border:1px solid rgba(14,119,119,.18);
}

.rfleet-btn--primary{
  background:linear-gradient(90deg,#0E7777,#00BFA6);
  color:#fff !important;
  border:none;
}

.rfleet-btn--ghost{
  background:#fff;
  color:#0E7777 !important;
}

.rfleet-btn--whatsapp{
  background:#25D366;
  color:#fff !important;
  border:none;
}

.rfleet-empty{
  padding:14px 14px;
  border-radius:14px;
  background:#f7fbfb;
  border:1px dashed rgba(14,119,119,.22);
  color:#375151;
}

.rfleet-alert{
  margin:0 0 12px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  border:1px solid rgba(0,0,0,.08);
}
.rfleet-alert--ok{ background:#f2fff8; color:#116a4b; border-color:rgba(17,106,75,.18); }
.rfleet-alert--err{ background:#fff6f6; color:#8a1f1f; border-color:rgba(138,31,31,.18); }

.rfleet-form{ margin-top:10px; }
.rfleet-label{ display:block; margin:10px 0 6px; font-weight:800; color:#033D3D; }
.rfleet-input{
  width:100%;
  max-width:720px;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(14,119,119,.18);
  background:#fff;
}
.rfleet-input:focus{ outline:none; border-color:rgba(14,119,119,.45); }

.rfleet-hint{ margin:10px 0 0; color:#5b7070; font-size:12px; }