  .id-card-wrapper {
      width: 85.60mm;
      height: 53.98mm;
      padding: 5mm;
      background: linear-gradient(to right, #e0f7fa, #80deea);
      border: 0px solid #000;
      border-radius: 5px;
      box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
      display: inline-block;
      font-family: Arial, sans-serif;
      position: relative;
    }

    .id-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 2mm;
    }

    .id-card-header img {
      width: 10mm;
      height: auto;
    }

    .id-card-header h1 {
      font-size: 5mm;
      color: #333;
      margin: 0;
      text-align: center;
      flex: 1;
    }

    .id-card-profile {
      display: flex;
      margin-top: 5mm;
    }

    .id-card-profile img {
      width: 20mm;
      height: 25mm;
      border: 0px solid #333;
      border-radius: 3mm;
    }

    .id-card-info {
      margin-left: 5mm;
    }

    .id-card-info h2 {
      font-size: 4mm;
      color: #333;
      margin: 0 0 2mm;
    }

    .id-card-info p {
      margin: 0;
      font-size: 3mm;
      color: #555;
    }

    .id-card-footer {
      position: absolute;
      bottom: 3mm;
      width: 100%;
      text-align: center;
      font-size: 3mm;
      color: #333;
    }