* {
		font-family: Verdana, Arial, sans-serif;
	  }
	a:link {
		color:#000;
		text-decoration: none;
	}
	a:visited {
		color:#000;
	}
	a:hover {
		color:#33F;
	}
	  .button {
		background-color: #4CAF50;
		border: none;
		color: white;
		padding: 10px 20px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		margin: 4px 2px;
		cursor: pointer;
		border-radius: 5px;
	  }
	  .button:hover {
		background-color: #45a049;
	  }
	  .center {
		text-align: center;
	  }
	  .final {
		color: black;
		padding-right: 3px; 
	  }
	  .interim {
		color: gray;
	  }
	  .info {
		margin-top: 10px;
		font-size: 14px;
		color: #555;
	  }
	  .right {
		float: right;
	  }
	  .sidebyside {
		display: inline-block;
		width: 20%;
		min-height: 40px;
		text-align: left;
		vertical-align: top;
	  }
	  #headline {
		font-size: 40px;
		font-weight: 300;
	  }
	  #info {
		font-size: 20px;
		text-align: center;
		color: #777;
		visibility: hidden;
	  }
	  #results {
		font-size: 14px;
		font-weight: bold;
		border: 1px solid #ddd;
		padding: 15px;
		text-align: left;
		min-height: 150px;
		margin-top: 20px;
	  }
	  #start_button {
		border: 0;
		background-color:transparent;
		padding: 0;
	  }
body, .app-container {
    background: #181818 !important;
    color: #f1f1f1 !important;
}
.app-container {
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    background: #222 !important;
}
#headline {
    color: #4CAF50;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    margin-top: 0;
}
.mini-btn {
    min-width: 54px;
    min-height: 54px;
    font-size: 1.5em;
    border-radius: 12px;
    background: #333;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.mini-btn:hover, .mini-btn:active {
    background: #4CAF50;
    color: #fff;
}
#start_button {
    width: 90px;
    height: 90px;
    font-size: 2.5em;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(76,175,80,0.25);
}
#start_button:hover {
    background: #388e3c;
}
.results-box {
    background: #232323;
    border: 2px solid #444;
    color: #f1f1f1;
    border-radius: 10px;
    margin-bottom: 14px;
}
textarea#final_span2 {
    width: 100%;
    border-radius: 12px;
    border: 2.5px solid #4CAF50;
    background: #181818;
    color: #fff;
    margin-top: 10px;
    padding: 16px;
    font-size: 1.2em;
    min-height: 120px;
    box-sizing: border-box;
    resize: vertical;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
textarea#final_span2:focus {
    border-color: #81c784;
    background: #222;
}
textarea#final_span2::placeholder {
    color: #bdbdbd;
    opacity: 1;
}
select, option {
    background: #232323;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #444;
    padding: 6px 10px;
}
.info-row .info { color: #bdbdbd; }
.note-title-input {
    width: 100%;
    max-width: 99vw;
    border-radius: 10px;
    border: 2px solid #4CAF50;
    background: #181818;
    color: #fff;
    font-size: 1.2em;
    padding: 12px 16px;
    margin-bottom: 6px;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.note-title-input:focus {
    border-color: #81c784;
    background: #232323;
}
#save_note_button {
    background: #2196f3;
    color: #fff;
    border-radius: 12px;
    font-size: 1.2em;
    min-width: 120px;
    min-height: 54px;
    padding: 12px 24px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.18);
    border: none;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#save_note_button:hover, #save_note_button:active {
    background: #1565c0;
}
@media (max-width: 600px) {
    .app-container { max-width: 99vw; padding: 2vw; }
    .results-box, textarea#final_span2 { font-size: 1.05em; }
    .button-row { gap: 2vw; }
    #start_button { width: 70px; height: 70px; font-size: 2em; }
    .mini-btn { min-width: 44px; min-height: 44px; font-size: 1.1em; }
}