.syscoin-loading-spinner-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}

.syscoin-loading-spinner {
  background-image: url('./assets/syscoin-loader.svg'); 
  min-width: 20px;
  min-height: 20px;
  background-size: cover;
  background-position: center;
  animation: spin 1s linear infinite;
}

.syscoin-icon {
  background-image: url('./assets/syscoin-icon.png');
  min-height: 30px;
  min-width: 30px;
  background-size: contain;
  background-position: center; 
  background-repeat: no-repeat;
  margin: 10px 0;
}

.syscoin-name {  
  background-image: url('./assets/syscoin-name.png');
  min-height: 50px;
  background-size: contain;
  background-position: left; 
  background-repeat: no-repeat;
  margin: 10px 0;
}

.syscoin-badge-app-store {  
  background-image: url('./assets/syscoin-badge-app-store.png');
  min-width: 120px;
  min-height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 10px;
}

.syscoin-badge-play-store {  
  background-image: url('./assets/syscoin-badge-play-store.png');
  min-width: 120px;
  min-height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.syscoin-small-donut-wrapper {
	margin: 0 10%;
	display: flex;
	justify-content: end;
	height: 175px;
}

.syscoin-page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px;
}

.syscoin-4x4-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	height: 100%;
	box-sizing: border-box;
}

.syscoin-4x4-grid > * {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.syscoin-initially-shown {
	display: flex;
}

.syscoin-initially-hidden {
	display: none;
}

.syscoin-utm-table {
	border-collapse: collapse; /* Shared borders */
	width: max-content;
	line-height: 1.2; /* Tighter line spacing */
}

.syscoin-utm-table th, td {
	padding: 2px; /* Reduced padding */
	border: 1px solid #ccc; /* Thinner borders */
}
