img{border:none;}
textarea,input,button,select{outline:none; border:none; resize: none;}
textarea:focus, input:focus, button:focus{outline:none; border:none;}
textarea:active, input:active, button:active{outline:none;border:none;}
a:hover {outline: none;}
.btn.submit:focus {
    outline-style: none;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
label{margin:0px;}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input::-webkit-calendar-picker-indicator {
  color: transparent;
  opacity: 1;
  background:  url("../img/i19.png") no-repeat center;
  background-size: contain;
}
*{
	box-sizing: border-box;
	margin:0;
	padding:0;
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  
  background: #f5f8fa;
  color: #333;
}

.collect {
	max-width: 1200px;
	margin: 0 auto 10px auto;
}

.collect .topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #009cdc;
	padding: 10px 25px;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.15);
	color: #fff;
	margin-bottom:10px;
 
}

.collect .logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collect .logo-area img {
  height: 38px;
  width: auto;
}

.collect .logo-area .title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.collect .menu {
  display: flex;
  gap: 10px;
}

.collect .btn {
  border: none;
  border-radius: 4px;
  font-size: 14px;
  padding: 8px 14px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.collect .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.collect .btn.blue { 
	background: #009cdc;
	text-decoration:none;
}
.collect .btn.blue:hover { background: #7a7a7a; }


.collect #app {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    height: calc(100vh - 78px);
}


.collect .overflow {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; 
}


.collect #form {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
	padding: 0 30px;
	min-height:400px;
}

.collect #nextBtn {
    flex-shrink: 0;
	margin: 15px auto 0 auto;
	width:320px;
}


.collect #app.is-prerequisite {
    background: rgba(100, 255, 160, 0.1);
}

.collect #app.is-performance {
    background: rgba(0, 170, 255, 0.1);
}

.collect .ask header {
  border-bottom: 3px solid #009cdc;
  margin-bottom: 10px;
  padding: 0 30px 10px 30px;
}

.collect .ask h1 {
  margin: 0;
  font-size: 22px;
  color: #009cdc;
  letter-spacing: 0.3px;
}

.collect .ask h2 {
  font-size: 18px;
  color: #444;
  margin: 30px 0 10px 0;
  border-left: 5px solid #009cdc;
  padding-left: 10px;
}

.collect .ask .title {
	margin:0;
}

.collect .ask h3 {
  color: #f47a42;
  margin-top: 10px;
  font-weight: 600;
  border-bottom: 2px solid #f47a42;
  padding-bottom: 4px;
}

.collect .ask .section {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 4px solid #009cdc;
}

.collect .ask label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #333;
}

.collect .ask select,
.collect .ask textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.2s;
}

.collect .ask select:focus,
.collect .ask textarea:focus {
  border-color: #009cdc;
  box-shadow: 0 0 0 3px rgba(0, 156, 220, 0.2);
  outline: none;
}

.collect .ask textarea {
  min-height: 70px;
  resize: vertical;
}

.collect .ask button {
  margin-top: 25px;
  padding: 12px 22px;
  background: #009cdc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
}

.collect .ask button:hover {
  background: #007bb2;
  transform: translateY(-2px);
}

.collect .ask button:active {
  background: #005f8b;
  transform: translateY(0);
}


.collect .ask #progress {
  color: #555;
  font-size: 14px;
  text-align: right;
}


.collect .ask table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.collect .ask table th {
  background: #009cdc;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
}

.collect .ask table td {
  text-align: center;
  padding: 8px;
  border-bottom: 1px solid #eee;
  background: #fff;
  font-size: 14px;
}

.collect .ask table tr:nth-child(even) td {
  background: #f7f9fb;
}

.collect .ask table tr:hover td {
  background: #e9f6fb;
  transition: background 0.25s;
}


.collect .ask .chart-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  justify-content: space-between;
}

.collect .ask canvas {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.collect .popup.hidden { display: none; }
.collect .popup {
  position: fixed;
  background: rgba(0,0,0,0.55);
  top:0; left:0; width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  z-index:9999;
}
.collect .popup-content {
  background:white;
  padding:20px 25px;
  border-radius:10px;
  width:350px;
  box-shadow:0 4px 20px rgba(0,0,0,0.3);
}
.collect .popup-content label {
  display:block;
  margin-top:10px;
  font-weight:600;
}
.collect .popup-content input {
  width:100%;
  padding:6px 8px;
  margin-top:4px;
  border:1px solid #ccc;
  border-radius:4px;
}
.collect .popup-actions {
  margin-top:15px;
  text-align:right;
}
.collect .popup-actions .btn {
  margin-left:8px;
}
.collect .btn.grey {
  background:#999; color:white;
}
.collect .scorecard .no-margin {
	margin:0;
}
.collect .scorecard h3 {
	color:#fff;
}


.ready .limited {
	display:none;
}


.result-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
  padding: 20px;
}

.result-wrapper .result-box {
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 60px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-top: 6px solid #009cdc;
}

.result-wrapper .result-box h2 {
  margin-bottom: 15px;
  color: #009cdc;
  font-size: 26px;
  font-weight: 700;
}

.result-wrapper .result-box p {
  font-size: 16px;
  color: #444;
}

.result-wrapper .result-actions {
  margin-top: 25px;
}

.result-wrapper .result-actions .btn {
  padding: 10px 18px;
  font-size: 15px;
  margin: 0 6px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

.result-wrapper .btn.green {
  background: #28a745;
  color: #fff;
}
.result-wrapper .btn.green:hover {
  background: #218838;
}




/* ================= */

.panel-wrapper {
  max-width: 1200px;
  margin: 0 auto 25px auto;
}

.panel-wrapper h2 {
  font-weight: 600;
  color: #009cdc;
  margin-bottom: 20px;
}

.panel-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.panel-table th {
  background: #009cdc;
  color: #fff;
  padding: 10px;
}

.panel-table td {
  border-bottom: 1px solid #eee;
  padding: 10px;
  text-align: center;
}

.panel-table tr:nth-child(even) {
  background: #f9f9f9;
}

.no-items {
  font-size: 16px;
  padding: 20px;
  color: #666;
}

.badge {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.badge-new { background: #ff9800; color: white; }
.badge-ok { background: #00a32b; color: white; }

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pg-item {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 3px;
  border: 1px solid #009cdc;
  border-radius: 4px;
  color: #009cdc;
  text-decoration: none;
}

.pg-item.active, .pg-item:hover {
  background: #009cdc;
  color: #fff;
}

.btn { 
	text-decoration:none;
}

.park-gate {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:25px;

}

.park-gate__box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 500px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: center;
}

.park-gate__box input {
  width: 100%;
  padding: 8px;
  margin: 10px 0 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.radar-section,
.charts-wrapper {
	max-width: 960px;
    margin: 0 auto;
}

.park-name{
  margin-left:15px;
  padding:4px 10px;
  background:#009cdc;
  color:#fff;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  display:none;
}






@media (max-width: 769px) {
	.park-gate__box {
		width: 320px;
	}

}







/* ==== BETA BAR ==== */
.beta-bar {
  width: 100%;

  background: #e9f4f8;
  border-top: 2px solid #1f8db3; 

  z-index: 9999;
  font-family: Arial, sans-serif;
}

.beta-bar__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.beta-bar__text {
  font-size: 14px;
  color: #1f2937; 
}

.beta-bar__btn {
  background: #f97316; 
  color: #fff;

  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;

  transition: 0.2s;
}

.beta-bar__btn:hover {
  background: #ea580c;
}

.beta-bar__text::before {
  content: "BETA";
  background: #f97316;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 8px;
}