/**
 * @file
 * Minimal component styles for the idfive theme.
 * 
 * Essential functional styles only. No decorative styling.
 */

/* Breadcrumb - minimal functional styles */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
}

/* Button - basic functionality only */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

/* Messages - basic structure */
.messages {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid;
}

/* Tables - basic table structure */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* Visually hidden - accessibility helper */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
