#voter-info-modal #voter-name {
  width: 75%;
}

#add-recipients-modal .recipients-footer,
#voter-info-modal .voter-info-footer {
  text-align: center;
}

.recipients-body {
  margin: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.font-weight-bold {
  font-weight: bold;
}

.btn-link.no-underline:hover {
  text-decoration: none;
}

.recipient-list {
  list-style: none;
  padding-left: 0;
}

.recipient-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
}

.recipient-item:last-child {
  margin-bottom: 0;
}

.recipient-label {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.recipient-details {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.recipient-name {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

.recipient-party {
  font-size: 12px;
  color: #666;
  margin-left: 5px;
}

.recipient-address {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.recipient-cost {
  font-size: 14px;
  font-weight: bold;
  color: #d9534f;
}

.form-group h5 {
  font-weight: bold;
  margin-top: 20px;
}

#voter-info-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dimmed background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}
  
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
