/* public/main.css */
@import 'css/bulma.min.css';

/* Your custom styles below */
.card {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-image {
	height: inherit;
	object-fit: cover;
}

.card-content {
	margin-top: auto;
}
.pagination {
	margin-top: 20px;
}

nav.navbar {
	border-top: 4px solid #276cda;
	margin-bottom: 1rem;
}
.navbar-item.brand-text {
	font-weight: 300;
}
.navbar-item, .navbar-link {
	font-size: 14px;
	font-weight: 700;
}

.navbar-end {
	align-items: center;
}

#imagePreview {
	display: none;
	max-width: 100%;
	max-height: 300px;
	margin-top: 10px;
}

/* Styles for imageToBase64.ejs and base64ToImage.ejs */
.tool-container {
  margin-top: 20px;
}

#base64Output, #base64Input {
  word-break: break-all;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  min-height: 100px;
  font-family: monospace;
}

#convertedImage {
  display: block; /* Or inline-block depending on layout */
  margin-top: 20px;
  max-width: 100%;
  border: 1px solid #ddd;
  padding: 5px;
}