/* Work Request Instructions card */

.dlw-instr-label {
    font-weight: 750;
    color: #111827;
  }
  
  .dlw-instr-cell {
    white-space: normal;
    word-wrap: break-word;
  }
  
  .dlw-instr-card {
    margin: 4px 0 14px 0;
    padding: 14px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
  }
  
  .dlw-instr-alert {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 11px 12px;
    margin-bottom: 12px;
    border: 1px solid #fed7aa;
    border-radius: 13px;
    background: #fff7ed;
    color: #7c2d12;
  }
  
  .dlw-instr-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f97316;
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
  }
  
  .dlw-instr-alert-title {
    margin-bottom: 2px;
    font-weight: 750;
    color: #7c2d12;
  }
  
  .dlw-instr-alert a {
    color: #9a3412;
    font-weight: 750;
    text-decoration: underline;
  }
  
  .dlw-instr-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .dlw-instr-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 13px;
    background: #ffffff;
  }
  
  .dlw-instr-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
  }
  
  .dlw-instr-item b {
    display: block;
    margin-bottom: 3px;
    color: #111827;
    font-size: 13px;
  }
  
  .dlw-instr-item span {
    display: block;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.35;
  }
  
  @media (max-width: 640px) {
    .dlw-instr-list {
      grid-template-columns: 1fr;
    }
  
    .dlw-instr-card {
      padding: 12px;
      border-radius: 14px;
    }
  }
  