/* T Graphics — Client Portal UX styles */

/* Attachment list */
.tg-attachment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tg-attachment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.15s ease;
}
.tg-attachment:hover {
  background: rgba(34,211,238,0.06);
  border-color: rgba(34,211,238,0.3);
}
.tg-att-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.tg-att-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tg-att-name {
  color: #f1f5f9;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tg-att-name:hover {
  color: #67e8f9;
  text-decoration: underline;
}
.tg-att-label {
  font-size: 10.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.tg-att-size {
  font-size: 11px;
  color: #64748b;
}
.tg-att-download {
  background: rgba(34,211,238,0.1);
  color: #67e8f9;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(34,211,238,0.2);
  transition: all 0.13s;
  flex-shrink: 0;
}
.tg-att-download:hover {
  background: rgba(34,211,238,0.18);
  border-color: rgba(34,211,238,0.4);
}
