/* flippy clock */
.clock {
	width: 300px; margin: 200px auto;
}

/* minutes input label */
label {
	color:rgb(100,100,100);
	font-size: xx-large;
}

/* minutes input field */
input {
	font-size: xx-large;
	width: 2em;
	margin-left: 1em;
}

/* start and stop buttons */
.start, .stop {
	font-size: xx-large;
}

/* to hide things */
.hidden {
	display:none;
}

/* Completion summary for read-only completed sessions */
.completion-summary {
	max-width: 500px;
	margin: 50px auto;
	padding: 30px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.completion-summary h3 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
}

.completion-summary p {
	font-size: 18px;
	margin: 12px 0;
	color: #555;
}

.completion-summary strong {
	color: #333;
	margin-right: 8px;
}

.completion-summary .readonly-note {
	text-align: center;
	border-top: 1px solid #e0e0e0;
	padding-top: 15px;
}

/* Add activity form */
#add_activity_wrapper {
	margin-top: 10px;
}

#new_activity_name {
	font-size: x-large;
	width: 12em;
	padding: 5px 10px;
}

#save_new_activity, #cancel_new_activity {
	font-size: large;
	padding: 8px 16px;
	margin-left: 8px;
	cursor: pointer;
}

#save_new_activity {
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
}

#save_new_activity:hover {
	background-color: #45a049;
}

#cancel_new_activity {
	background-color: #888;
	color: white;
	border: none;
	border-radius: 4px;
}

#cancel_new_activity:hover {
	background-color: #666;
}

/* Post-timer navigation links */
#post_timer_links {
	margin-top: 30px;
	text-align: center;
}

.post-timer-link {
	display: inline-block;
	padding: 12px 24px;
	margin: 8px;
	font-size: large;
	text-decoration: none;
	color: white;
	background-color: #2196F3;
	border-radius: 6px;
	transition: background-color 0.2s;
}

.post-timer-link:hover {
	background-color: #1976D2;
}

.post-timer-link:visited {
	color: white;
}
