@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-VariableFont_wght.woff') format('woff'),
         url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype'),
         url('../fonts/Oswald-VariableFont_wght.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}







/* Media Query for Mobile Devices */

@media only screen and (orientation: landscape) {
/*html, body {
	font-size: 150%;
}

.panel-content .img2p1 {
	width: 80%;
	}
/* General Styles */
html, body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: "Oswald";
	background-color:#676767;
}

/* Container for the panels */
.panel-container {
    display: flex;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

.panel {
    width: 5%;
    height: 100vh;
    background-color: #f0f0f0;
    display: inline-table;
    cursor: pointer;
    transition: width 0.3s;
    position: relative;
}

.panel.expanded {
    width: 75%;
    height: 100%;
    cursor: default;
}

.panel-content {
   /* display: flex; */
   display: flex;
   position: absolute;
   top:0;
   left: 5%;
   overflow-x: hidden;
}

.panel.expanded .panel-content {
    display: flex;
}

.panel:not(.expanded) .panel-content {
    display: none;
}

.panel-content .scrollable-content {
    width: 80%;
    max-height: 100px;
    overflow-y: auto;
	
}

.myDiv {
  background: rgba(192,192,192, 0.5);
  width: 100%;
  margin: auto;
  padding: 10px;
}

/* Style for the vertical text container */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    transform: rotate(180deg);
    font-size: 30px;
    width: 1.5em;
    white-space: nowrap;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
	margin-left:0px;
}

.panel-content .hero-arrow {
  display: none;
}

.panel-content .sabu {
    height: 95vh;
	width: 98%;
    margin-left: 2%;
    margin-top: 2%;
    margin-right: 1%;
    color: #000000;
    text-align: left;
}

/* Improved Styles for Form Controls */
.panel-content .sabu .form-control {
    width: calc(min(80%, 500px));/* Adjusted for better responsiveness */
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.panel-content .sabu input,
.panel-content .sabu button,
.panel-content .sabu textarea {
    margin: 1px 0; /* Improved spacing */
	font-size: 100%;
}
.panel-content .sabu textarea {
	height: 200px;
	padding: 10px;
}
.panel-content .sabu .gen_img {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Default Link Styles */
a {
    color: blue;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover Styles */
a:hover {
    color: red;
}

/* Visited Link Styles */
a:visited {
    color: blue;
}

/* Active/Focus Styles */
a:active,
a:focus {
    outline: none;
    border-bottom: 2px solid #0077cc;
}

/* Remove Link Underline for Inline Elements */
a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/* Responsive Images */

	.panel-content .img1p1 {
		position: absolute;
	width: 30%;
	min-width: 374px;
	top: 50px;
	left: 0;
	text-align: left;
	opacity: 0.5;
	}

	.panel-content .img2p1 {
	position: absolute;
	width: 50%;
	height: auto;
	bottom: 0;
	right: 0;
	text-align: right;
	}

	}

	@media only screen and (orientation: portrait) {
/*html, body {
	font-size: 150%;
}

.panel-content .img2p1 {
	width: 80%;
	}
/* General Styles */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Oswald";
	background-color:#676767;
	font-size: 100%;
}

/* Container for the panels */
.panel-container {
    display: block;
    /*overflow-y: hidden; */
    height: 100%;
    margin: 0;
    padding: 0;
}

.panel {
    height: 10%;
    width: 100%;
    background-color: #f0f0f0;
    display: inline-table;
    cursor: pointer;
    transition: height 0.3s;
    position: relative;
}

.panel.expanded {
	
    width: 100%;
    height: 100%;
    cursor: default;
	transition: height 0.3s;
}

.panel-content {
   display: flex;
   position: absolute;
   top:10%;
   left: 1%;
   bottom:10%;
   overflow-x: auto;
}

.panel.expanded .panel-content {
    display: flex;
}

.panel:not(.expanded) .panel-content {
    display: none;
}

.panel-content .scrollable-content {
    width: 100%;
    max-height: 100px;
    /*overflow-y: auto; */
	
}

.myDiv {
  background: rgba(192,192,192, 0.5);
  width: 100%;
  margin: auto;
  padding: 10px;
}


/* Style for the vertical text container */
.vertical-text {
    font-size: 40px;
    width: 1.5em;
    white-space: nowrap;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
	margin-left:20px;
}

.panel-content .sabu {
    height: 95vh;
	width: 98%;
    margin-left: 2%;
    margin-top: 2%;
    margin-right: 1%;
    color: #000000;
    text-align: left;
}

/* Improved Styles for Form Controls */
.panel-content .sabu .form-control {
    width: calc(min(80%, 500px));/* Adjusted for better responsiveness */
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.panel-content .sabu input,
.panel-content .sabu button {
    margin: 1px 0; /* Improved spacing */
	font-size: 100%;
}

.panel-content .sabu textarea {
	height: 1500px;
	padding: 10px;
      margin: 1px 0; /* Improved spacing */
	font-size: 100%;
}

.panel-content .sabu .gen_img {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.panel-content .hero-arrow {
  display: block;
  position: absolute;
  width: 100%;
  height: 130px;
  bottom: 10%;
  text-align: center;
  color: white;
}

/* Default Link Styles */
a {
    color: blue;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover Styles */
a:hover {
    color: red;
}

/* Visited Link Styles */
a:visited {
    color: blue;
}

/* Active/Focus Styles */
a:active,
a:focus {
    outline: none;
    border-bottom: 2px solid #0077cc;
}

/* Remove Link Underline for Inline Elements */
a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/* Responsive Images */

	.panel-content .img1p1 {
		position: absolute;
	width: 30%;
	min-width: 374px;
	top: 10px;
	left: 0;
	text-align: left;
	opacity: 0.5;
	}

	.panel-content .img2p1 {
	position: absolute;
	width: 70%;
	height: auto;
	bottom: 25%;
	right: 0;
	text-align: right;
	}

	}
	
	/*
@media only screen and (max-width: 1200px) {
	.panel-content img {
	position: absolute;
	width: 30%;
	height: auto;
	max-height: 500px;
	min-width: 300px;
	bottom: 0;
	right: 150px;
	text-align: left;
	}
}

@media only screen and (max-width: 900px) {
	.panel-content img {
	position: absolute;
	width: 30%;
	height: auto;
	max-height: 500px;
	min-width: 300px;
	bottom: 0;
	right: 140px;
	text-align: left;
	}
}

@media only screen and (max-width: 600px){
	.panel-content img {
	position: absolute;
	width: 30%;
	height: auto;
	max-height: 500px;
	min-width: 300px;
	bottom: 0;
	right: 130px;
	text-align: left;
	}
}
*/
