* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #00ff00;
	color: #000000;
}

button,
input,
select {
	font: inherit;
}

.heading {
	background-color: #4dff4d;
	min-height: 5rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
}

.heading h1 {
	margin: 0;
	font-size: 2.5rem;
}

.account-buttons {
	display: flex;
	gap: 0.75rem;
}

.pill,
.small-button {
	background-color: #00cc00;
	border: none;
	cursor: pointer;
	border-radius: 999px;
	color: #000000;
	transition: background-color 0.15s ease;
}

.pill {
	padding: 0.45rem 1rem;
	min-width: 6rem;
}

.pill:hover,
.small-button:hover,
.round-button:hover {
	background-color: #009900;
}

.pill:active,
.small-button:active,
.round-button:active {
	background-color: #006600;
}

.time-section {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #00cc00;
	min-height: 15rem;
	padding: 2rem 1rem;
	text-align: center;
}

.time-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.colon {
	font-weight: bold;
}

.warn {
	color: red;
	min-height: 1.25rem;
}

.time-input {
	width: 3rem;
	height: 2rem;
	border-radius: 999px;
	border: 0;
	background-color: #4dff4d;
	text-align: center;
	cursor: pointer;
}

.ampm-input {
	width: 4.5rem;
	height: 2rem;
	border-radius: 999px;
	border: 0;
	background-color: #4dff4d;
	cursor: pointer;
	text-align: center;
}

.time-input:hover,
.ampm-input:hover {
	background-color: #80ff80;
}

.time-input:active,
.ampm-input:active {
	background-color: #b3ffb3;
}

.time-submit {
	cursor: pointer;
	background-color: #00ff00;
	min-height: 2.25rem;
	border: 0;
	width: min(100%, 14.5rem);
	border-radius: 999px;
	font-weight: bold;
}

.time-submit:hover {
	background-color: #33ff33;
}

.time-submit:active {
	background-color: #66ff66;
}

.remove {
	display: none;
}

.check-list {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 2rem;
	background-color: #00ff00;
	padding: 3rem 1rem;
	flex-wrap: wrap;
}

.check-list-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	max-width: 28rem;
	align-items: flex-start;
}

.list-input {
	background-color: #00cc00;
	border: none;
	min-height: 2rem;
	width: 9rem;
	border-radius: 999px;
	color: #ffffff;
	padding: 0 0.75rem;
	flex: 0 0 9rem;
}

.list-input::placeholder {
	color: #e8ffe8;
}

.round-button {
	background-color: #00cc00;
	border: none;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	color: #ffffff;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
}

.check-message {
	width: 100%;
	text-align: center;
	margin: 0;
}

.small-actions {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.small-button {
	width: 5rem;
	height: 2rem;
	color: #ffffff;
	font-weight: bold;
}

.check-list-box {
	background-color: #4dff4d;
	border: 2px solid #000000;
	width: min(100%, 24rem);
	padding: 1.5rem;
}

.check-list-box h2 {
	margin: 0 0 1rem;
	font-size: 2.25rem;
	text-align: center;
}

.main-list {
	margin: 0;
	padding-left: 1.5rem;
}

.main-list li {
	margin-bottom: 0.75rem;
}

.item-span {
	color: #333333;
	margin-right: 0.5rem;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.completed {
	text-decoration: line-through;
	color: #333333;
	opacity: 0.7;
}

.result-section {
	background-color: #4dff4d;
	text-align: center;
	padding: 3rem 1rem 0.5rem;
}

.last-p-text {
	font-size: 1rem;
	color: #00995c;
}

.reg {
	font-size: 0.75rem;
}

@media (max-width: 600px) {
	.check-list {
		flex-direction: column;
		align-items: center;
	}

	.time-row {
		flex-direction: row;
	}

	.check-list-box h2 {
		font-size: 2rem;
	}
}
.reset-button {
	cursor: pointer;
	background-color: #00ff00;
	color: #000000;
	border: 0;
	min-height: 1.75rem;
	width: min(100%, 10rem);
	border-radius: 999px;
	font-weight: bold;
	margin-top: 0.6rem;
}

.reset-button:hover {
	background-color: #33ff33;
}

.reset-button:active {
	background-color: #66ff66;
}
.button-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	flex: 0 0 auto;
}
.delete-button {
	padding: 0.25rem 0.65rem;
	min-width: 4rem;
	font-size: 0.85rem;
	margin-left: 0.4rem;
}
.popup-backdrop {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.45);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 1000;
}

.popup-backdrop.show {
	display: flex;
}

.popup {
	background-color: #4dff4d;
	border: 2px solid #006600;
	border-radius: 0.5rem;
	width: min(100%, 22rem);
	padding: 1.5rem;
	position: relative;
}

.popup h2 {
	margin-top: 0;
	text-align: center;
}

.popup label {
	display: block;
	font-weight: bold;
	margin-top: 0.75rem;
}

.popup-input {
	width: 100%;
	height: 2.25rem;
	border: 0;
	border-radius: 999px;
	background-color: #00cc00;
	color: #000000;
	padding: 0 0.75rem;
	margin-top: 0.25rem;
}

.popup-submit {
	background-color: #00cc00;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	width: 100%;
	min-height: 2.25rem;
	font-weight: bold;
	margin-top: 1rem;
}

.popup-submit:hover {
	background-color: #009900;
}

.popup-submit:active {
	background-color: #006600;
}

.popup-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background-color: #00cc00;
	border: none;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	font-weight: bold;
}

.popup-close:hover {
	background-color: #009900;
}

.task-summary {
	background-color: #00cc00;
	border-radius: 999px;
	padding: 0.45rem 0.75rem;
	margin-bottom: 1rem;
	text-align: center;
	font-weight: bold;
	overflow-wrap: anywhere;
}

.progress-wrap {
	width: min(100%, 24rem);
	margin: 1.5rem auto 2rem;
}

.progress-info {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	margin-bottom: 0.4rem;
}

.progress-bar {
	width: 100%;
	height: 1rem;
	background-color: #00cc00;
	border-radius: 999px;
	overflow: hidden;
	border: 2px solid #009900;
}

.progress-fill {
	width: 0%;
	height: 100%;
	background-color: #006600;
	border-radius: 999px;
	transition: width 0.2s ease;
}

.firstFormHead {
	margin: 0 0 1rem;
	font-size: 2rem;
	text-align: center;
}

.check-listHead {
	padding: 1rem 0 0 0;
	display: flex;
}

#taskAddHeader {
	padding: 0 0 0 25%;
}
.about-section {
	background-color: #4dff4d;
	text-align: center;
	padding: 3rem 1rem;
}

.about-section h2 {
	margin: 0 0 0.75rem;
	font-size: 2rem;
}

.about-section p {
	max-width: 36rem;
	margin: 0 auto;
	font-size: 1rem;
	color: #00995c;
	line-height: 1.5;
}

#aboutContactSeparator{
	color: #4dff4d;
}

.about-section span {
	color: #287558;
	font-weight: bold;
	text-decoration: underline;
}
.headingAboutSeparationLine{
	width: 100%;
	min-height: 0.21em;
	background-color: #00cc00;
}