@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&family=Stack+Sans+Headline:wght@200..700&display=swap');
html,body{
	padding: none;
	margin: 0;
	font-family: "Momo Trust Display", sans-serif;
	background-color: hsl(0, 0%, 98%);
}
.titleCont{
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(144deg,#1b5fac 17%, rgba(119, 77, 164, 1) 100%);
	padding: 5px 5px 30px 5px;
	color:white;
}


.titleSearch{
	font-size: clamp(2rem,	4vw, 3.4rem);
	margin: 0;
}
.titleSecond{
	font-size: clamp(1rem, 1.1vw, 2rem);
	font-weight: 200;
	padding: 20px;
}

.searchgrid{
	display: grid;
	width: calc(100% - 40px);
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	gap:20px;
	padding: 10px 20px;
	
}
.NotiInputLabel{
	font-size: clamp(1rem, 1.1vw, 1.4rem);
}
.NotiInput {
  width: 100%;
  box-sizing: border-box;
	padding: 6px;
	outline: none;
	color: hsl(100 0% 25%);
	border: 4px solid hsl(100 0% 79%);
	font-family: "Momo Trust Display", sans-serif;
	font-weight: 200;
	font-size: clamp(1rem, 1.1vw, 1.5rem);
	border-radius: 10px;

}
.NotiInput:focus{
	outline: none;
}

select.NotiInput {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) 60%;
  background-size: 14px;
  padding-right: 32px;
}
textarea.NotiInput{
	resize: none;
  height: 90px;
	font-size: clamp(1rem, 1vw, 1.8rem);
}

.NotiInput:focus{
	border: 4px solid hsl(100 0% 55%);
}

button{
	border:none;

	padding: 6px;
	font-family: "Momo Trust Display", sans-serif;
	font-weight: 200;
	font-size: clamp(1rem, 1.1vw, 2rem);
	border-radius: 15px;
	color: hsl(100 0% 25%);
	background-color: hsl(100 0% 95%);
	border: 2px solid hsl(100 0% 79%);
	cursor: pointer;
}
button:focus,button:hover{
	outline: none;
	filter: brightness(85%);
}

.buttonBlue{
	background-color: #2174d2;
	color:white;
	border:none;
}


dialog.noticeDialog {
	width: 95vw;
	height: 95vh;
	margin: auto;
	padding: 0;
	border: none;
	border-radius: 10px;
}
dialog.noticeDialog::backdrop {
	background: rgba(0, 0, 0, 0.5);
}
.noticeDialog notice-details::part(ND) {
	min-height: calc(100% - 34px) !important;
}

