input:required:invalid {
	border-color: #f14668;
}

input:required:valid {
	border-color: #23d160;
}

.section {
	max-width: 2000px;
}

input, button {
	margin-top: 10px;
}

.title-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.ActionBox {
	min-width: 1000px;
	max-width: 2000px;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	border: 1px solid #e9ecef;
	background-color: #f8f9fa;
	margin-bottom: 1.5rem;
	margin: 1.5rem;
	margin-top: 1.5rem;
	border-radius: 8px;
	overflow-x: auto;
}

.table-container {
	width: 100%;
	overflow-x: auto;
}

.references-table-container {
	width: 100%;
	overflow-x: visible;
}

table {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
}

th, td {
	padding: 10px;
	text-align: left;
	white-space: nowrap;
}

th {
	cursor: pointer;
}

th:hover, tr:hover {
	background-color: #f5f5f5;
}

.ClickableTable tbody tr:hover {
	background-color: #f5f5f5;
	cursor: pointer;
}

.AddLink {
	font-weight: normal;
	float: right;
}

.buttons-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.delete-button {
	margin-left: auto;
}

.navbar {
	position: relative;
	z-index: 1000;
	background-color: #fff;
}

.loading-screen {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50vh;
}

.spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.table.is-borderless td {
	border: none;
	padding: 0.5rem 0.75rem;
}

.table.is-borderless tbody tr:last-child td {
	border-bottom: none;
}

.box {
	margin-bottom: 0;
}

.tag.is-info {
	background-color: #3298dc;
	color: white;
	font-weight: 500;
}

.tag.is-success {
	background-color: #48c774;
	color: white;
	font-weight: 500;
}

.tag.is-warning {
	background-color: #ffdd57;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 500;
}

.notification.is-info {
	margin-top: 1rem;
	text-align: center;
}

.notification.is-warning {
	margin-top: 1rem;
}

a {
	color: #3273dc;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Human/Transaction/Report Info Styles */
.info-field {
	display: flex;
	margin-bottom: 1rem;
}

.info-label {
	font-weight: bold;
	min-width: 120px;
	margin-right: 1rem;
}

.info-value {
	flex: 1;
}

.human-info {
	background-color: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
}

.report-title {
	color: #363636;
	margin-bottom: 1.5rem;
}

.section-title {
	color: #363636;
	margin-bottom: 1rem;
	border-bottom: 2px solid #dbdbdb;
	padding-bottom: 0.5rem;
}

.table-wrapper {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.aka-list {
	background-color: #f9f9f9;
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.aka-item {
	margin-bottom: 0.5rem;
}

.transaction-summary {
	border: 1px solid #ccc;
	padding: 15px;
	margin-bottom: 20px;
	background-color: #f9f9f9;
	border-radius: 4px;
}

.combined-timeline-description {
	word-break: break-word;
	white-space: normal;
	max-width: 400px;
}

.notes-cell {
	word-wrap: break-word;
	white-space: normal;
	overflow-wrap: break-word;
	max-width: 400px;
}

.url-cell {
	max-width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}