/* Global settings */
body {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin-top: 10px;
	padding-bottom: 40px;
	background-color: #000000;  /* Dark mode */
	color: #0bc504;  /* Default text color */
  }
  
  /* New item input field */
  #newitem {
	font-size: 30px;
	width: 69%;
	border: 1px solid #ddd;
	text-align: center;
	border-radius: 5px;
	margin: 5px auto 20px;
	padding: 5px;
  }
  
  /* Ordered list settings */
  ol {
	list-style: none;
	padding: 0;
  }
  
  /* To-do list items */
  #list li {
	line-height: 32px;
	color: #ddd;
	position: relative;
	font-size: 40px;
	cursor: default;
	text-align: center;
  }
  
  /* First to-do list item */
  #list li:first-child {
	color: #ffffff;
	font-size: 50px;
	z-index: 999;
  }
  
  /* Mark done button */
  .markdone {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	background: url(../img/tick_32x32.png) no-repeat right;
	text-decoration: none;
	text-indent: -999em;
	outline: none;
	margin: -8px 0 0 -8px;
  }
  
  /* Placeholder list item */
  #list li.ph {
	color: #ddd !important;
	text-shadow: none;
  }
  
  /* Editing state */
  .editing .markdone {
	display: none;
  }
  
  .editing {
	list-style: decimal !important;
  }
  
  /* Description list */
  dl {
	text-align: left;
	font-size: 12px;
	width: 520px;
	background: #f5f5f5;
	border-radius: 10px;
	margin: auto;
	padding: 10px;
  }
  
  /* Description term */
  dt {
	font-weight: 700;
	padding: 10px 10px 0;
  }

  /* Rainbow text for specific dt element */
  dt.rainbow-text {
	background-image: linear-gradient(to left, 
	  violet 0%, indigo 20%, blue 40%, green 60%, yellow 80%, orange 90%, red 100%);
	-webkit-background-clip: text;
	background-clip: text;  /* Standard property for compatibility */
	color: transparent;  /* Makes the text transparent, showing the background */
  }
      
  /* Description definition */
  dd {
	margin: 0;
	padding: 5px 10px 20px;
  }
  
  /* Code within description */
  dd code {
	font-size: 11px;
	background: #eee;
	padding: 3px 10px;
  }
  
  /* Footer */
  footer {
	position: fixed;
	z-index: 9999;
	display: block;
	width: 100%;
	text-align: center;
	bottom: 0;
	font-size: 12px;
	background: #000;  /* Dark mode */
	padding: 10px 0;
  }
  
  /* readable elements */
header, small {
	font-size: 12px;
  }

div{margin:0;padding:0;}
.clock{position:relative;width:100%;min-width:820px;
	background-image:-webkit-gradient(linear,left top,left bottom,from(#000),color-stop(.5,rgba(0,100,0,.5)),to(#000));
	background-image:-moz-linear-gradient(top,#000,rgba(0,100,0,.5) 50%,#000);}
.overlayleft{position:absolute;left:50px;top:25px; text-shadow:0 0 15px #0f0;
	font-family: tahoma, arial, helvetica, sans-serif; font-size: 40px; font-weight:bolder; 
	letter-spacing: 0.1em; color: #336699;}
.overlayright{position:absolute;right:50px;top:25px; text-shadow:0 0 15px #0f0;
	font-family: tahoma, arial, helvetica, sans-serif; font-size: 40px; font-weight:bolder; 
	letter-spacing: 0.1em; color: #336699;}