#footballTimerControlSection {
  margin-top: 20px;
  text-align: center;
}
#footballTimerControlSection b {
  display: block;
  margin-bottom: 10px;
}

.football-timer-row {
  display: flex;
  align-items: center;
  margin: 10px 0;
  justify-content: space-between; /* Phân bố đều các radio-group */
  gap: 0px; /* Giảm gap từ 20px xuống 10px để vừa container */
}

.football-timer-row .radio-group {
  display: flex;
  align-items: center;
  gap: 5px; /* Giữ khoảng cách nhỏ giữa input và label */
  min-width: 120px; /* Đặt chiều rộng tối thiểu để đồng đều */
  flex: 1; /* Cho phép radio-group co giãn đều */
  justify-content: flex-start; /* Căn trái nội dung trong radio-group */
}

.football-timer-row input[type="radio"] {
  vertical-align: middle;
  margin: 0;
  height: 16px;
}

.football-timer-row label {
  font-size: 14px;
  line-height: 14px;
  margin: 0;
  width: auto;
  display: inline-block;
  text-align: left;
  white-space: nowrap; /* Ngăn label xuống dòng */
}

#footballMarqueeSection {
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

#footballMarqueeSection > b {
  font-size: 13px;
}

#footballMarqueeOptions {
  text-align: left;
}
.football-marquee-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  align-items: center;
}
.football-marquee-row input[type="radio"] {
  vertical-align: middle;
  margin: 0 5px 0 0;
  height: 16px;
}
.football-marquee-row label {
  font-size: 14px;
  line-height: 14px;
  margin: 0;
  width: 80px;
  display: inline-block;
  text-align: left;
}
#footballMarqueeSection textarea {
  font-size: 16px;
  padding: 5px;
  margin: 5px;
  width: calc(100% - 10px);
  height: 60px;
  resize: none;
  box-sizing: border-box;
  display: block;
}
#footballMarqueeSection button {
  font-size: 16px;
  padding: 10px 20px;
  margin: 10px 5px;
    background-color: #ff7300;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  width: calc(100% - 10px);
  font-weight: bold;
}
#footballMarqueeSection button:hover {
    background-color: #e06600;
}
#footballMarqueeSection button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Keep temporary feedback visible even while the request disables the button. */
#footballMarqueeSection button.action-feedback-btn.status-loading,
#footballMarqueeSection button.action-feedback-btn.status-info {
    background-color: #0066cc;
}

#footballMarqueeSection button.action-feedback-btn.status-success {
    background-color: #16833c;
}

#footballMarqueeSection button.action-feedback-btn.status-error {
    background-color: #c62828;
}
.football-skin-options {
  margin-top: 0px;
  text-align: left;
}
.football-skin-option {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
}
.football-skin-option input[type="radio"] {
  margin: 6px 10px 0 0;
  vertical-align: top;
}
.football-skin-content {
  flex: 1;
}
.football-skin-title {
  font-size: 18px;
  margin: 0;
  cursor: pointer;
}
.football-skin-preview {
  width: 100%;
  object-fit: cover;
}

	.penalty-row {
		display: flex;
		flex-direction: column; /* Chuyển sang cột để label lên trên */
		align-items: flex-start; /* Căn trái cho gọn */
		gap: 10px;
		margin: 10px 0;
		padding: 10px 0px;
		border: 1px solid #ccc; /* Thêm border cho toàn bộ penalty-row */
		border-radius: 5px; /* Bo góc nhẹ */
	}
	.penalty-row label {
		font-weight: bold; /* Làm đậm tên đội */
		padding: 0px 0px 0px 10px;
		margin: 0; /* Xóa margin mặc định */
	}

.penalty-shots {
	display: flex;
	justify-content: space-between; /* Các nút phân bố đều theo chiều ngang */
	gap: 5px;
	width: 100%; /* Chiếm toàn bộ chiều ngang của penalty-row */
}
  .penalty-result-label.vao {
    background-color: #03FF22;
    padding: 0px 2px;
    border-radius: 3px;
  color: black;
  }
  .penalty-result-label.xit {
    background-color: #FF5239;
    padding: 0px 6px;
    border-radius: 3px;
  color: white;
  }
.shot {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 10px;
	flex: 1; /* Mỗi shot chiếm đều không gian */
}
.shot input[type="radio"] {
	width: 13px;
	height: 13px;
	margin: 0;
}
.shot input[type="radio"]:disabled {
	opacity: 0.28;
	cursor: not-allowed;
}
.shot input[type="radio"]:disabled + .penalty-result-label {
	opacity: 0.45;
}
