
body {
    font-family: 'Libre Baskerville', 'Helvetica Neue', Arial, sans-serif;
    background-color: #eef2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 80%;
    text-align: center;
}

.disclaimer {
	padding-top:20px;
	color: grey;
	font-family: 
}

.main {
    width: 100%;
}

a:link {
	text-decoration: none;
	color: #1a6680;
}

a:visited {
	text-decoration: none;
	color: #1a6680;
}

a:hover {
	color: #13a093;
}


.drawer {
    position: fixed;
    bottom: 0;
    width: 80%;
	

    text-align: center;
}

.drawer-toggle {
    background-color: #1a6680;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin: 5px;
}

.drawer-toggle:hover {
    background-color: #0056b3;
}

.drawer-content {
    background-color: #f8f9fa;
    padding: 5px;
    border-radius: 8px 8px 0 0;
    border-top: 1px solid #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.drawer-content.open {
    /* Initially set a reasonable height */
    max-height: 300px;
}

h1 {
    margin-top: 0;
    font-size: 24px;
    color: #1a6680;
}

h2 {
    font-size: 20px;
    color: #1a6680;
}

#latex-logo {
    display: inline;
}

textarea {
    width: calc(100% - 10px);
    height: 150px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

.buttons {
    margin-bottom: 20px;
}

button {
    background-color: #1a6680;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin: 5px;
}

button:hover {
    background-color: #0056b3;
}

#output {
    margin-top: 20px;
    padding: 10px;
    /*background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;*/
    min-height: 50px;
    text-align: left;
    overflow-x: auto;
}

#history {
    margin-top: 10px;
}

.history-item {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
    background-color: #fff;
}

.history-item:hover {
    background-color: #e2e6ea;
}
