/* 	Tanvi G
	Section B
	MySQL assignment
	styles for forms and results of Custom Cakes pages
	10/7/19 */

body
{
	/* #ffe6ff is light purple and #5b005b is dark purple */
	margin: 0px;
	background-color: #ffe6ff;
	color: #5b005b;
}

#display-icing-color
{  
	/* have icing color label and color appear side by side */
	display: flex;
	margin-bottom: 20px;
}

#icing-label
{
	margin-top: 0px;
	margin-bottom: 0px;
}

#thank-you
{
	font-weight: bold;
	padding-top: 15px;
}

#icing-color 
{
	width: 5%;
}

.icing-color-table
{
	width: 50px;
	height: 15px;
}

.icing-color-box
{
	border: 1px solid black;
	margin-left: 10px;
	margin: 0px;
}

p
{
	margin: 10px;
	margin-bottom: 20px;
}

h1, h2
{
	text-decoration: underline;
	font-family: Georgia, Times, Times New Roman, serif;
}

h2
{
	font-size: 27px; 
}

h1
{
	font-size: 36px; 
}

#intro
{
	text-align: center;
	background-color: #5b005b;
	color: #ffe6ff; 
	padding: 60px;
	padding-top: 10px;
	
}

img
{
	width: 300px;
	height: 250px;
	margin: 20px;
}

.content
{
	padding: 30px;
	padding-top: 10px;
	
}

.blur
{
	/* 
	blur border between top section and bottom section 
	15px refers to how blurred the shadow is
	20px refers to the size of the shadow
	*/
	box-shadow: 0px 0px 15px 20px #ffe6ff;
}

input
{
	margin-top: 0px;
	margin-bottom: 20px;
	color: #5b005b;
}

input[type="radio"]
{
	margin: 10px;
}

input[type="color"]
{
	margin-top: 10px;
}

form, p, a, input
{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 15px;
}

label
{
	display: block;
}

#forms
{
	/* have both forms appear side by side */
	display: flex;
}

#order-a-cake 
{
	width: 500px;
	margin-left: 60px;
}

#find-your-cake 
{
	width: 500px;
	margin-right: 60px;
}

table
{
	margin-bottom: 20px;
}

th, td
{
	/* space between columns */
	width: 115px;
	text-align: left;
	/* space between rows */
	padding: 2px;
}

th
{
	font-size: 17px;
}