html,
body {
	min-height: 100%;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
		'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: bisque;
	display: flex;
	flex-direction: column;
}

#root {
	flex: 1 0 auto;
}

body::-webkit-scrollbar {
  display: none;
}
header {
	position: sticky;
	top: 0;
	z-index: 1000;
}
footer {
	min-height: 160px;
	color: bisque;
	background-color: rgb(92, 3, 3);
	margin-top: auto;
}
.navBar {
	height: 80px;
	color: bisque;
	background-color: rgb(92, 3, 3);
	display: flex;
	justify-content: center;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.logo {
	position: relative;
	width: 40%;
	display: flex;
	justify-content: center;
}
.logoImg {
	height: 100%;
	-webkit-user-drag: none;
	filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}
.navClothA {
	position: relative; 
	width: 20%;
	filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
	display: flex;
	justify-content: center;
	background-size: contain;
	background-repeat: repeat-x;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200px" height="300px" viewBox="0 0 200 300"><path fill="darkblue" d="M0,0 L200,0 L200,300 L0,200 Z" /></svg>');
}
.navClothB {
	position: relative; 
	width: 10%;
	height: 150%;
	filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
	display: flex;
	justify-content: center;
	background-size: contain;
	background-repeat: repeat-x;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200px" height="400px" viewBox="0 0 200 400"><path fill="darkgreen" d="M0,0 L300,0 L300,400 L0,300 Z" /></svg>');
}
.navClothMenu {
	position: relative; 
	width: 10%;
	filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
	background-size: contain;
	background-repeat: repeat-x;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200px" height="300px" viewBox="0 0 200 300"><path fill="darkgreen" d="M0,0 L200,0 L200,300 L0,200 Z" /></svg>');
}
.prof {
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	justify-self: center;
	padding-top: 30px;
	border-top: 1px solid;
	border-color: #c29b83;
}

/* ログインボタンのスタイル */
#login {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	gap: 10px;
}

#loginBtn {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Google Sign-In ボタンのカスタマイズ */
#loginBtn > div {
	transform: scale(1.2);
	transform-origin: center;
}

.logout-btn {
	padding: 8px 16px;
	background-color: #f44336;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.logout-btn:hover {
	background-color: #da190b;
}

#userInfo {
	display: flex;
	align-items: center;
	gap: 15px;
	color: white;
	height: 100%;
}

#userPicture {
	border: 2px solid white;
	padding: 2px;
}

#userName {
	font-size: 14px;
	font-weight: bold;
}