/* style.css */

body {
    font-family: sans-serif;
    background-color: #f9f6f6;
    color: #555;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    min-width: 300px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
	font-size: 20pt; 
	font-weight: 200;
	text-align: center;
	color: #ff6f61;
	margin-bottom: 30px;
}

h2 {
	font-size: 14pt; 
	font-weight: 200;
	color: #ff6f61;
	border-bottom: 1px solid #ff6f61;
	padding-bottom: 5px;
}

.current-time, .status, .next-period, .previous-period, .debug {
    margin-bottom: 20px;
}

div.current-time p {
	color: #999;
	font-size: 10pt; 
	font-weight: 200;
}
div.previous-period p, div.next-period p, div.next-period span {
	color: #999;
	font-weight: 200;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

.error {
    color: #d9534f;
    text-align: center;
    font-weight: bold;
}

.debug {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.debug label {
    display: block;
    margin-bottom: 10px;
}

.debug input {
    padding: 8px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.debug button {
    padding: 8px 16px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    background-color: #ff6f61;
    color: #fff;
    cursor: pointer;
}

.debug button:hover {
    background-color: #e65b50;
}

/* Presentステータスのデザイン */
.status.void {
    background-color: #fff;
}

.status.not-void {
    background-color: #fff;
}

.status p#current-status.void-text {
    color: #f66;
    font-weight: bold;
}

.status p#current-status.not-void-text {
    color: #999;
    font-weight: normal;
}

/* ボイド中のbodyの背景色 */
body.void {
    background-color: #f99;
}
footer {
display:block;
margin:0 auto;
text-align:center;
font-weight: 100;
color: #333;
}