/**
 * @file
 * Styles for expandable public notes in the ADP search view.
 */

/* Style for the "More Info" link */
.public-notes-toggle {
  margin-left: 0.5em;
  font-size: 0.9em;
  text-decoration: underline;
  cursor: pointer;
  color: #0066cc;
}

.public-notes-toggle:hover,
.public-notes-toggle:focus {
  color: #004499;
  text-decoration: none;
}

/* Style for the expandable notes row */
.public-notes-row {
  background-color: #ffffff !important;
}

.public-notes-cell {
  padding: 1em !important;
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.public-notes-content {
  background-color: #ffffff;
  padding: 0;
  font-size: 0.95em;
  line-height: 1;
  color: #333;
}

/* Ensure proper zebra striping is maintained */
.views-table tr.public-notes-row + tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.views-table tr.public-notes-row + tr:nth-child(odd) td {
  background-color: #ffffff;
}
