@charset "UTF-8";

.accordion {
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 12px;
	background: #f5f5f5;
	cursor: pointer;
	font-weight: bold;
}

.accordion-content {
	display: none;
	padding: 10px;
	background: #fff;
}

.accordion.open .accordion-content {
	display: block;
}

.mission-badge {
	background: #2ecc71;
	color: white;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	white-space: nowrap;
}

.card {
	background:#fff;
	padding:20px;
	margin-bottom:20px;
	border-radius:10px;
}

.card_form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_input{
    display: block;
    width: 92%;
    margin: 2%;
    padding: 14px 2%;
    border: 1px solid #333;
    border-radius: 10px;
 	font-size: 16px;
    text-align: center;
    background: #e9ecef;
}

.slot {
	display:block;
	margin-bottom:10px;
	cursor:pointer;
}

.slot-content {
	border:1px solid #ddd;
	padding:10px;
	border-radius:8px;
	transition:0.2s;
}

.slot.selected .slot-content {
	border-color:#2e7d32;
	background:#eaffea;
}

.slot.blocked {
	opacity:0.4;
}

.slot input {
  	display: none;
	margin-right:10px;
}

.slot-content{
	display: flex;
	text-align: center;
}

.slot-content > div {
	width: 100%;
}

.slot-time{
	text-align: left;
}
.places{
	text-align: right;
}

#counter {
	font-weight:bold;
	margin-bottom:15px;
}

.btn-submit {
	width:100%;
	padding:15px;
	font-size:16px;
	background:#2e7d32;
	color:#fff;
	border:none;
	border-radius:8px;
	cursor:pointer;
}

.slot.blocked {
	opacity: 0.3;
	pointer-events: none;
	filter: grayscale(1);
}
