.conditional-form-container {
    max-width: 600px;
    margin: 20px 0;
}

.conditional-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.conditional-fields {
    background: #f0f0f0;
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
    border-left: 4px solid #0073aa;
}

.submit-btn {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.user-wallet-container {
    max-width: 800px;
    margin: 20px 0;
}

.wallet-balance {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.transactions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.transactions-table th,
.transactions-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.status-approved {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.repeater-row {
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f8f8;
  border: 1px solid #ccc;
}
.repeater-row input,
.repeater-row select {
  margin-right: 10px;
  margin-bottom: 5px;
}
.repeater-row label {
  display: block;
  font-weight: bold;
  margin-top: 5px;
}
.add-row,
.remove-row {
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 14px;
}
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh!important; /* Limits height to 80% of the viewport */
    overflow-y: scroll; /* Adds vertical scrolling */
    position: relative;
}