/* font-weight: 100;   Thin */
/* font-weight: 400;   Normal */
/* font-weight: 700;   Bold */
/* font-weight: 900;   Ultra bold  */

.notice-text {
  color:#1AA7CC;
  font-weight: 700;
}
.box_open { 
background-color: lightgreen;
  width: 85%;
  border: 2px solid green;
  padding-top: 1px;
  padding-bottom: 2px;
  padding-left: 10px;
  padding-right: 2px;
  line-height: 1.0;
  margin: 1px;
  border-radius: 8px;
}
.box_closed {
  background-color: lightblue;
  width: 85%;
  border: 5px solid blue;
  padding-top: 1px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 10px;
  line-height: 1.0;
  margin: 1px;
  border-radius: 8px;
}
.box_testmode {
    width: 70%;
    margin-right: 1px;
    border: 5px solid red;
	padding-top: 1px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 1.0;
	border-radius: 15px;
}
.box_futureout {
background-color: lightgray;
  width: 85%;
  border: 3px solid black;
  padding-top: 1px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 5px;
  line-height: 1.0;
  margin: 1px;
  border-radius: 8px;
}
.box_gen_announce {
background-color: orange;    /* #FFA500  */
  width: 85%;
  border: 3px solid #025fb1;
  padding-top: 2px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.0;
  margin: 1px;
  border-radius: 8px;
  font-size: 18px;        /* adjust as desired */
  font-weight: 700;       /* bold */
  color: #025fb1;         /* dark blue */
  text-align: center;     /* optional */
}
.box_open_announce {
background-color: #fde6bb;  /* light orange */
  width: 95%;
  border: 3px dotted #025fb1;
  padding-top: 2px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.0;
  margin: 1px;
  border-radius: 8px;
  font-size: 16px;        /* adjust as desired */
  font-weight: 700;       /* bold */
  color: #025fb1;         /* dark blue */
  text-align: center;     /* optional */
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); /* Red */
  }
  35% {
    transform: scale(1.10);
    box-shadow: 0 0 20px 20px rgba(255, 255, 0, 0); /* yellow fade out */
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7); /* yellow */
  }
  85% {
    transform: scale(1.10);
    box-shadow: 0 0 15px 15px rgba(255, 0, 0, 0); /* Red fade out */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); /* Reset */
  }
}
.button_enter {
    background-color: red;
    color: yellow;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid yellow;
    padding: 4px 4px 4px 4px;
    border-radius: 10px;
    cursor: pointer;
     animation: pulse 2s infinite;
  }
  .button_enter:hover {
    background-color: yellow;
    border-color: red;
        color: red;
}
 .button_testing {
    background-color: red;
    color: white;
    border: none;
    padding:4px 8px;  /* top right bottom left  or top bottom */
    border-radius:4px;
    cursor: pointer;
  } 
 .button_names { 
    background-color: #d1fe05;
    color: black;
	font-weight: 700;
    border: 2px solid black;  
    padding:4px 8px;  /* top right bottom left  or top bottom */
    border-radius:4px;
    cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
  } 
 .button_names.active {
  background-color: #feef05;   /* chartrues */
  color: black;
  font-weight: 700;
}
 .button_out { 
    background-color: #5fdaea;
    color: black;
	font-weight: 700;
    border: 2px solid black;  
    padding:4px 8px;  /* top right bottom left  or top bottom */
    border-radius:4px;
    cursor: pointer;
  } 
 .button-row {
    display: flex;
    gap: 15px;          /* space between buttons */
	justify-content: center;  /* center horizontally */
    margin: 15px 0;
}
.input-note {
    width: 95%;
    height: 40px;
    padding: 2px 4px 2px 4px;
    font-size: 14px;
    border: 2px solid green;
    border-radius: 3px;
    resize: none;
	color: black;
}
.input-note:focus {
    border-color: blue;
    background-color: #ffff9e;  /*light yellow / some opacity */
    outline: none;
}
#charCount, #wordCount {
    font-size: 14px;
    margin-top: 5px;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 14px;          /* space between items */
  flex-wrap: wrap;    /* wraps nicely on small phones */
}
.status-row h3 {
	margin: 0;          /* remove default top/bottom spacing */ 
	color: black;
}
.radio-option { 
    display: inline-flex;
    align-items: center;
    gap: 6px;  /* between circle and text */
    font-size: 18px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: red;
    margin: 0;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,150,0,0.35);
}
.radio-option:hover {
    background-color: yellow;
    box-shadow: 0 0 6px rgba(0,150,0,0.7);
    transform: scale(1.05) translateX(4px);
}
.header-row {
    display: flex;
    align-items: center;
    gap: 20px;          /* controls spacing between header and button */
    flex-wrap: wrap;    /* allows wrapping on small screens */
}
.header-row h3 { 
    margin: 0;
} 
.player-table {
    border-collapse: collapse;
    width: 85%;
	    margin: 10px 0 0 10px;
    table-layout: fixed;
    font-size: 14px;
}
.player-table th {
    padding: 6px 8px;
    text-align: center;
    background-color: #d1fe05;
    border-bottom: 3px solid #999;   /* stronger separation */
}
.player-table td {
    padding: 4px 8px;
    border-bottom: 2px solid #ccc;   /* lighter row lines */
}
/* Optional vertical lines (lighter than full grid) */
.player-table th,
.player-table td {
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
}
/* Column widths + alignment */
.player-table th:nth-child(1),
.player-table td:nth-child(1) {
    width: 65%;
    text-align: left;
}
.player-table th:nth-child(2),
.player-table td:nth-child(2) {
    width: 35%;
    text-align: center;
}
/* Zebra rows */
.player-table tr:nth-child(even) {
    background-color: #FDFB7B;
}
@media (max-width: 600px) {
    .header-row {
        flex-direction: column;
        align-items: flex-start;
		gap: 10px; 
    }
    .header-row button {
        align-self: flex-end;
        margin-top: 8px;
    }
}
#namesSection {
    scroll-margin-top: 10px;
}