.bottom-sheet-wrapper {
	display: none;
}

.bottom-sheet-wrapper.show-modal {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
}

.bottom-sheet-wrapper .backdrop {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	transition: opacity 0.3s ease;
	opacity: 0;
}

.bottom-sheet-wrapper.show-modal .backdrop {
	opacity: 1;
}

.bottom-sheet-wrapper .bottom-sheet {
	background: #fff;
	width: 100%;
	height: 85vh;
	position: absolute;
	left: 0;
	bottom: -100%;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	transition: bottom 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.bottom-sheet-wrapper.show-modal .bottom-sheet {
	bottom: 0;
}

.bottom-sheet-header {
	padding: 16px;
  background-color: #ffffff;
  border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.modal-title {
	font-size: 18px;
	font-weight: 600;
	color: #020617;
	margin: 0;
}

.modal-match-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 16px;
	margin-bottom: 16px;
}


.modal-match-date {
	color: #07274a;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.modal-match-location {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 400;
	color: #58595a;
}

.bottom-sheet-body {
	flex-grow: 1;
	overflow-y: auto;
}
.bottom-sheet-content-wrapper {
	padding: 16px;
  background-color: #F5FAFF;
}
.bottom-sheet-content p,
.bottom-sheet-content ol,
.bottom-sheet-content b {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
}

.bottom-sheet-footer {
	padding: 16px;
	background-color: #ffffff;
	border-top: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.modal-close-button {
	all: unset;
	display: flex;
	padding: 14px 12px;
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
	align-items: center;
	align-self: stretch;
	border-radius: 8px;
	background: var(--secondary-100, #00529b);
	color: var(--black-100, #fff);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	cursor: pointer;

  background-color: #00529B;
  box-shadow: 0px 4px 4px rgba(0, 82, 156, 0.45);
}

.close {
	display: none;
}