*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-size: cover;

}
html {
	overflow-x: hidden !important;
	width: 100%;
	height: 100%;
	position: relative;
}
body
{
	font-family:"Nunito", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-position: center;
	background: #fff;
	color: #333;
}
header
{
	width: 80%;
	height: auto;
/*	background-color: grey;*/
	display: flex;
}
.side-menu
{
	width:18%;
	min-height: 100vh;
	background-color: #ebe8e8;
/*	text-align: center;*/
	position: absolute;

}
.side-menu ul
{
	list-style: none;
	color: #000;
}
.side-menu ul li 
{
	margin: 10px;
	padding: 10px;
	background-color: #060664;
	cursor: pointer;
}


.side-menu ul li a 
{
    	margin: 10px;
	padding: 10px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	/*font-weight: bold;*/

}

.side-menu ul li:hover 
{
	color:  #fff;
	background: orange;
}

.side-menu ul li.active  {  
   color:  #fff;
	background: orange; 
}    

.nav-bar
{
	width: 82%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #f7f6f6;
	position: absolute;
	margin-left: 18%;
}
.nav-bar ul
{
	width: 35%;
	display: flex;
	justify-content: space-between;
	list-style: none;
	height: auto;

}

.nav-bar ul li 
{
	padding: 5px;
	margin: 5px;
}

.nav-bar ul li a
{
	text-decoration: none;
	color:#813333;
	font-weight: bold;
}

.nav-bar ul li a:hover
{
	color:orange;
}
.menu-toggle
{
	width: 50px;
	height: 30px;
	background-color: #813333;
/*	margin: 0px auto;*/
cursor: pointer;
display: none;

}
.toggle
{
	width: 40px;
	height: 3px;
	background-color: white;
	margin: 5px;
	border-radius: 5px;

}
.logo
{
	width: 20%;
	height: 45px;
}

.content-section
{
	position: relative;
	margin-left:20%;
	top: 100px;
}



.container-custom {
        width: 100%;
/*        max-width: 800px;*/
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    h1 { text-align: center; color: #333; }
    textarea {
        width: 100%;
        height: 150px;
        font-family: 'Courier New', monospace;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        resize: none;
        margin-bottom: 10px;
    }
    .button-group {
        display: flex;
        justify-content: space-around;
        margin-top: 10px;

    }
    button {
        flex: 1;
        margin: 5px;
     padding: 10px 20px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        color: white;
/*        width: 45px;*/
        margin: 10px;
    }
    #formatButton { background-color: #007bff; }
    #minifyButton { background-color: #28a745; }
    #clearButton { background-color: #dc3545; }
    #copyButton { background-color: #6c757d; }
    button:hover { filter: brightness(90%); }
    pre {
        background-color: #f1f1f1;
        color: black;
        padding: 10px;
        white-space: pre-wrap;
        border-radius: 4px;
        overflow-x: auto;
        font-family: 'Courier New', monospace;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
         height: 150px;

    }
    .copy-message {
        display: none;
        position: absolute;
        background: #28a745;
        color: white;
        padding: 15px 35px;
        border-radius: 5px;
        font-size: 18px;
        top: 10px;
        right: 10px;
        font-weight: 100;
    }
    #codeInput 
    {
    	border:0;
    	outline: 0;
    	margin-top:10px ;
    	 border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    } 

    #languageSelect
    {
    	padding: 10px 20px;
    }

#tabSize
{

  padding: 10px 20px;  
}

#useTabs 
{

	width: 20px;
	height: 20px;
	cursor: pointer; 
}

.heading-one
{
	font-size: 18px;
/*	background-color: green;*/
/*	color: white;*/
}

    footer

{
	width: 100%;
	height: auto;
/*	background-color: #f1f1f1;*/
/*	margin-top: 50px;*/
	position: relative;
	margin-top: 45vh;
	justify-content: center;
	padding: 20px;
}
.footer-menu
{
	list-style: none;
	text-align: center;

}

.footer-menu li  
{
	margin: 7px ;
	padding: 7px;
	color: black;
}

.footer-menu li a 
{
	text-decoration: none;
	color:#fff;
	cursor: pointer;
} 

.footer-menu li a:hover
{
	color:orange;
	font-weight: bold;
}

.footer-bottom
{
	/*padding: 10px;*/
	text-align: center;
	color: white;
	background-color:#000 ;

} 


@media screen and (max-width: 480px) {

	header
{
	width: 100%;
	height: auto;
	background-color: black;
	display: flex;
}
.side-menu
{
	width:70%;
	min-height: 100vh;
	background-color: #f1f1f1;
/*	text-align: center;*/
/*	position: absolute;*/
/*	display: none;*/
	  position: absolute;
    top: 0;
    left: 0;
/*    background: orange;*/
    z-index: 10;
    scroll-behavior: smooth;
    transform: translateX(-100%);
    transition: 0.1s linear 0.5s;
    padding: 10px;

}

  .menu_toggle
  {
    transform: translateX(0%);
  }

.nav-bar
{
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #f7f6f6;
	position: relative;
	margin-left: 0%;
	padding: 10px;
}


.menu-toggle
{
width: auto;
	height: auto;
	background-color: #813333;
/*	margin: 0px auto;*/
cursor: pointer;
display: block;

}
.toggle
{
	width: 40px;
	height: 3px;
	background-color: white;
	margin: 7px;
	border-radius: 5px;


}
.logo
{
	width: 45%;
	height: 45px;
}

.content-section
{
	position: relative;
	margin-left:00%;
	top: 90px;
}

}



@media screen and (min-width: 480px) and (max-width: 768px) {

	header
{
	width: 100%;
	height: auto;
	background-color: black;
	display: flex;
}
.side-menu
{
	width:50%;
	min-height: 100vh;
	background-color: #f1f1f1;
/*	text-align: center;*/
/*	position: absolute;*/
/*	display: none;*/
	  position: absolute;
    top: 0;
    left: 0;
/*    background: orange;*/
    z-index: 10;
    scroll-behavior: smooth;
    transform: translateX(-100%);
    transition: 0.1s linear 0.5s;
    padding: 20px;

}

  .menu_toggle
  {
    transform: translateX(0%);
  }

.nav-bar
{
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #f7f6f6;
	position: relative;
	margin-left: 0%;
	padding: 10px;
}


.menu-toggle
{
	width: auto;
	height: auto;
	background-color: #813333;
/*	margin: 0px auto;*/
cursor: pointer;
display: block;

}
.toggle
{
	width: 40px;
	height: 3px;
	background-color: white;
	margin: 7px;
	border-radius: 5px;
	

}
.logo
{
	width: 35%;
	height: 45px;
}

.content-section
{
	position: relative;
	margin-left:00%;
	top: 90px;
}

}




@media screen and (min-width: 768px) and (max-width: 1024px) {

	header
{
	width: 100%;
	height: auto;
	background-color: black;
	display: flex;
}
.side-menu
{
	width:50%;
	min-height: 100vh;
	background-color: #f1f1f1;
/*	text-align: center;*/
/*	position: absolute;*/
/*	display: none;*/
	  position: absolute;
    top: 0;
    left: 0;
/*    background: orange;*/
    z-index: 10;
    scroll-behavior: smooth;
    transform: translateX(-100%);
    transition: 0.1s linear 0.5s;
    padding: 20px;

}

  .menu_toggle
  {
    transform: translateX(0%);
  }

.nav-bar
{
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #f7f6f6;
	position: relative;
	margin-left: 0%;
	padding: 10px;
}


.menu-toggle
{
	width: auto;
	height: auto;
	background-color: #813333;
/*	margin: 0px auto;*/
cursor: pointer;
display: block;

}
.toggle
{
	width: 40px;
	height: 3px;
	background-color: white;
	margin: 7px;
	border-radius: 5px;
	

}
.logo
{
	width:25%;
	height: 45px;
}

.content-section
{
	position: relative;
	margin-left:00%;
	top: 90px;
}

}