@charset "utf-8";
/* CSS Document */
.sim-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 100%;
	height: 40px;
    max-width: 100%;
  }

  .sim-icon {
    background: #1a6fa8;
    color: #fff;
    padding: 18px 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: stretch;
  }

  .sim-name {
	  display: flex;
    font-size: 15px;
    font-weight: 600;
    color: #1a2535;
    padding: 0 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
    flex-shrink: 0;
  }

  .sim-field {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 18px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .sim-field i { font-size: 13px; color: #7a9ab8; }
  .sim-field .label { font-size: 12px; color: #8fa3b8; margin-right: 2px; }
  .sim-field .value { font-size: 13px; font-weight: 500; color: #2d4057; }

  .badge {
    margin-left: auto;
    margin-right: 16px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .badge.active  { background: #dcfce7; color: #166534; }
  .badge.warning { background: #fef9c3; color: #854d0e; }
  .badge.expired { background: #fee2e2; color: #991b1b; }

  @media (max-width: 700px) {
    .sim-row { flex-wrap: wrap; padding: 14px; gap: 10px; }
    .sim-icon { border-radius: 10px; padding: 12px 14px; align-self: auto; }
    .divider  { display: none; }
    .sim-field { padding: 0 4px; }
    .badge    { margin-left: 0; }
  }