/*--------------------------------------------------------------------------------------------------
Reset Style Sheet (all browsers)

version:	1
author:		Damien van Holten
email:		damien@reaact.net
website:	http://www.damienvanholten.com
--------------------------------------------------------------------------------------------------*/

/* van Holten reset (adapted from Meyers')
--------------------------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, 
acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, 
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body
{
	line-height: 1;
	font-size: 13px;
	font-family: arial, verdana, helvetica, sans-serif;
}

ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}

dt
{
	font-weight: bold;
}

blockquote,
q
{
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after
{
	content: '';
	content: none;
}

:focus
{
	outline: 0;
}

ins
{
	text-decoration: none;
}

del
{
	text-decoration: line-through;
}

table th
{
	text-align: left;
}

.mysql-console {
	width: 100%;
	height: 150px;
	background-color: #1e1e1e;
	color: #00ff00;
	font-family: monospace;
	padding: 10px;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	resize: none;
	overflow: auto;
}

/* Container for the result output */
.mysql-result {
	background-color: #1e1e1e;
	color: #00ff00;
	font-family: monospace;
	padding: 10px;
	margin-top: 20px;
	border: 1px solid #ccc;
	white-space: pre;
	max-height: 400px; /* Limits the height */
	overflow-y: auto;  /* Enables vertical scrolling */
}

.mysql-result table {
	border-collapse: collapse;
	width: 100%;
}

.mysql-result th, .mysql-result td {
	border: 1px solid #00ff00;
	padding: 8px;
	text-align: left;
}

.mysql-result th {
	background-color: #333333;
	color: #00ff00;
}

.mysql-result td {
	background-color: #222222;
	color: #00ff00;
}