/* ---------------------- */
/* ------ WRAPPER ------- */
/* ---------------------- */

body, html {
	width: 100%;
	height: 100vh;
	background-color: #FFE;
	font-family: arial;
	text-align: center;
	position: relative;
	margin: 0;

}
#wrapper {
	position: absolute;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}
h1, h2, h3, h4 {
	font-weight: bold;
	text-decoration: underline;
}


/* ---------------------- */
/* ------- HEADER ------- */
/* ---------------------- */

#header {
	display: flex;
	position: fixed;
	width: 100%;
	height: 80px;
	background-color: #FEC;
	border-style: solid;
	border-width: 2px;
	border-color: #720;
	border-right: none;
	border-left: none;
	border-top: none;
}
#header h1 {
	width: 20%;
}
#header a {
	text-decoration: none;
	color: #000;
}
#nav {
	width: 80%;
	height: 50px;
	position: absolute;
	margin-left: 20%;
    top: 20%;
	text-align: left;
}
.navbar-nav a {
	text-decoration: none;
	color: black;
	padding: 20px;
	font-size: 20px;
	position: relative;
}
.navbar-nav a:hover {
	text-decoration: underline !important;
}
/* Increase padding for dropdown items for better mobile touch */
.nav-item {
    padding-top: 15px;
	padding-bottom: 15px;  /* Adjust these values as needed */
	white-space: nowrap;
}
.nav-item:hover {
	background-color: #EDB;
}


/* ---------------------- */
/* ------- PAGE --------- */
/* ---------------------- */
.page {
	display: inline-block;
	margin-top: 80px;
	width: 90%;
	position: absloute;
	height: 80%;
	text-align: center;
	font-size: 0.7cm; 
	padding-bottom: 130px;
}
.page ul, .page li, .page a {
	list-style-position: inside;
	list-style: none;
	color: #000;
	line-height: 1.8;
	position: absloute;
	margin-right: 15px;
}
.page h1 {
	font-size: 0.9cm;
	font-weight: bold;
}
#poem {
	font-family: Times;
	font-style: italic;
}
#poemTitle {
	margin-top: 15px;
}


/* ---------------------- */
/* ------- EDIT --------- */
/* ---------------------- */

#content {
	width: 150px;
	height: 300px;
}

#content_area {
    width: 90%; /* Increase or decrease as per your preference */
    height: 400px; /* Increase or decrease as per your preference */
    font-size: 20px; /* Increase or decrease font size as per your preference */
}
.edit_page {
	display: inline-block;
	margin-top: 90px;
}


/* ---------------------- */
/* ------ FOOTER -------- */
/* ---------------------- */

#footer {
  font-size: 14px;
  position: fixed;
  left: 0px;
  bottom: 0px;
  border-radius: 10px;
  width: 100%;
  height: 40px;
  background-color: #CB9;
  display: inline-block;
  border: 1px solid #aac;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
}
.footer-list-outline {
  position: relative;
  width: 33%;
  float: left;
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}
.footer-list {
  padding: 5px !important;
  list-style: none;
  border: solid 2px #986;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: #EDB;
  border-radius: 10px;
  height: 35px;
}
.footer-list a {
  text-decoration: underline;
  color: #000;
}
.footer-list a:hover {
  text-decoration: underline;
  color: #666;
}


/* ---------------------- */
/* ------- OTHER -------- */
/* ---------------------- */

@media (max-width: 1200px) { /* This ensures the styles apply only for screens smaller than the 'lg' breakpoint */
    .navbar-collapse.show {
        background-color: rgba(255, 238, 204, 0.95); /* This is #FEC with opacity */
    }
}