html,
body {
  height: 100%;
  font-weight: 300;
  background: #ffffff;
  color: #222222;
}

body {
  padding-top: 120px;
}

h1, h2, h3, h4, h5 {
	font-weight: 900;
	color: #222222
}

h1 {color: #8b0000;}

a, a:visited {
	color: #222222;
}

.muted {
	font-size: 75%;
	color: #888;
}

.form-check-input:checked, .page-item.active .page-link {
    background-color: #006400;
    border-color: #006400;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ffffff;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #ffffff;
}

.alert p {
	margin: 0px;
}

.container {
  max-width: 960px;
}

.navbar {
	padding: 20px;
	background: linear-gradient(120deg, #8b0000, #006400);

}

.navbar .nav-link, .navbar-brand {
	color: #ffffff !important;
	text-transform: uppercase;
}

.logo-img {
    height: 2em;
    vertical-align: baseline;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: -12px;
    margin-top: -10px;
}

.navbar-brand {
	font-weight: 700;
    line-height: 1;
}

.btn-primary {
	color: #ffffff !important;
	background: #006400;
	border-color: #006400;
}

.btn-primary:hover {
	background: #8b0000;
	border-color: #8b0000;
}

.btn-secondary {
	background: #8b0000;
	border-color: #8b0000;
}

.btn-secondary:hover {
	background: #006400;
	border-color: #006400;
}

main {
	padding-bottom: 60px !important;
}

.card-equal {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card-equal .fa-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #8b0000;
}
.welcome-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.form-floating:focus-within {
  z-index: 2;
}

.form-floating input.top, .form-floating select.top, .form-floating button[type="submit"].top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.form-floating input, .form-floating select, .form-floating button[type="submit"] {
  margin-bottom: -1px;
  border-radius: 0;
}

.form-floating input.bottom, .form-floating select.bottom, .form-floating button[type="submit"].bottom {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.table {
	margin-top: 20px;
	margin-bottom: 60px;
}

.table th {
	color: #006400;
	font-weight: bold;
}

.table>:not(:first-child) {
	border-color: #006400 !important;
}

.table td {
	border: none;
	color: #222222 !important;
}

.table a, .table .btn, .table .btn:hover {
	text-decoration: none;
}

.table a:hover {
	text-decoration: underline;
}

.table .actions {
	text-align: right;
}

.dashboard {
	min-height: 100vh;
}

.pulsing {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

#frm_path, #frm_path_preview {
	text-transform: lowercase;
}

.hidden {
	display: none;
}

input.error, checkbox.error {
	border-color: #dd0000;
}

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
	.actions .small {display: none;}
	.actions .large {display: block;}
	.small-only {display: none;}
	.navbar .sign-in .nav-link {
		background: #8b0000;
		color: #ffffff;
		padding-left: 20px;
		padding-right: 20px;
		margin-left: 10px;
		border-radius: 7px;
	}
}

@media (max-width: 768px) {
	.actions .small {display: block;}
	.actions .large {display: none;}
	.large-only {display: none;}
}

footer {
	background: #8b0000;
	text-align: left;
	color: #ffffff;
}

footer a, footer a:hover, footer a:active {
	color: #ffffff !important;
	text-decoration: none;
}

footer a:hover, footer a:active {
	text-decoration: underline;
}

footer .list-unstyled {
	margin-top: 59px;
}



/* Center modal content */
#shareModal .modal-body {
  text-align: center;
}

/* Style for the URL boxes */
.copyable-link {
  display: inline-block;
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.copyable-link:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

/* Feedback when copied */
.copyable-link.copied {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

/* QR Code styling */
#qrImage {
  width: 200px;
  margin: 20px 0;
  cursor: pointer;
  transition: transform 0.2s;
}


#qrImage.copied {
  outline: 3px solid green;
  transition: outline 0.3s ease-in-out;
}

#qrImage:hover {
  transform: scale(1.1);
}

/* Download button alignment */
#downloadQrCode {
  margin-top: 10px;
}


.drop-zone {
    border: 2px dashed #6c757d;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    cursor: pointer;
    font-size: 30px;
}
.drop-zone.dragover {
    background-color: #e9ecef;
    border-color: #007bff;
}
.drop-zone p {
	margin: 0px;
}
input[type="file"] {
    pointer-events: none;
}

#filePickerGrid img {
    cursor: pointer;
    max-width: 100%;
    max-height: 100px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

#filePickerGrid img:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

.filePickerPreview img {
    max-height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-fixed-row {
	position: fixed;
	bottom: 0px;
	left: 0px;
	background: #006400;
	width: 100%;
	text-align: center;
	padding: 10px 0px;
}

table {
  table-layout: fixed; /* Ensures columns are evenly distributed */
  word-wrap: break-word; /* Allows long words to wrap */
  white-space: normal; /* Ensures wrapping instead of forcing content to stay on one line */
}

.pricing-header {
	background: #8b0000;
}
.pricing-header h4 {
	color: #ffffff;	
}
.border-pricing {
	border-color: #8b0000;
}
.price-text {
	color: #006400;
}
.strikethrough {
	position: relative;
	font-size: 75%;
	color: #8b0000;
}
.strikethrough:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	right: 0;
	border-top: 6px solid;
	border-color: inherit;
	-webkit-transform:rotate(-15deg);
	-moz-transform:rotate(-15deg);
	-ms-transform:rotate(-15deg);
	-o-transform:rotate(-15deg);
	transform:rotate(-15deg);
}