/* Access Portal Styles */

.access-portal-section {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
}

.access-portal-section h2 {
  margin-top: 0;
  font-size: 18px;
  color: #222;
}

.access-portal-section form label {
  display: inline-block;
  min-width: 120px;
  margin: 8px 0;
  color: #333;
}

.access-portal-section select,
.access-portal-section input[type="text"] {
  min-width: 220px;
  padding: 4px 6px;
}

.access-portal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #fff;
  border: 1px solid #ddd;
}

.access-portal-table thead th {
  background: #f6f7f7;
  color: #1d2327;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.access-portal-table tbody td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.access-portal-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.access-portal-table select {
  min-width: 160px;
}

.notice {
  margin: 12px 0;
}


.access-portal-table .inactive-row {
    color: #888;
    background-color: #f9f9f9;
}


/* Progress bar container */
.ap-progress-bar {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

/* Each step */
.ap-progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 0;
    color: #666;
    border-bottom: 4px solid #ccc;
    font-size: 14px;
}

/* Highlight current step */
.ap-progress-step.active {
    font-weight: bold;
    color: #000;
    border-color: #0073aa; /* WordPress blue */
}

/* Optional: add connecting lines between steps */
.ap-progress-step::after {
    content: '';
    position: absolute;
    right: -50%;
    top: 50%;
    width: 100%;
    height: 4px;
    background: #ccc;
    z-index: -1;
}
.ap-progress-step:last-child::after {
    display: none;
}

/* Context line below the bar */
.ap-progress-context {
    margin-top: 10px;
    font-style: italic;
    color: #444;
}



