/*
  File: layout.css
  Author: Shane John
  Date: 2025-05-10
  Course: CPSC 3750 – Web Application Development
  Purpose: Stylesheet for Fixed Fluid Layout Assignment
  Notes: Features adjustments laid out in the assignment instructions
*/

body {
  margin:0;
  padding:0;
  min-width: 525px;
}

header {
  float: left;
  width: 100%;
}

footer {
  position:relative;
  float: left;
  width: 100%;
  background-color: #cccccc;
  text-align:center;
  font-style: italic;
  padding: 8px;
}

#wrapper {
  display: inline;
  float: left;
  padding-left: 200px;
  padding-right: 125px;
  overflow: hidden;
}

#left_side {
  position: relative;
  float: left;
  width: 16%;
  background-color: #52f471;
  right: 154px;
  margin-left: -100%;
  margin-bottom: -2000px;
  padding-bottom: 2000px;

}

#right_side {
  position: relative;
  float: left;
  width: 10%;
  background-color: #f452d5;
  margin-right: -125px;
  margin-bottom: -2000px;
  padding-bottom: 2000px;
  padding-left: 25px;
  padding-right: 32.5px;
}

#content_area {
  position: center;
  float: left;
  background-color: #ffffff;
  width: 95%;
  margin-bottom: -2000px;
  padding-bottom: 2000px;
  margin-left: 0px;
  margin-right: 10px;

}

h1 {
  margin: 0;
}

#left_side ul {
  list-style: none;
  margin: 12px 0px 0px 12px;
  padding: 0px;
}

#left_side li a:link, #nav li a:visited {
  font-size: 12pt;
  font-weight: bold;
  padding: 3px 0px 3px 3px;
  color: #000000;
  text-decoration: none;
  display: block;
}

#left_side li a:hover, #nav li a:active {
  font-size: 12pt; 
  font-weight: bold;
  padding: 3px 0px 3px 3px;
  color: #ffffff;
  text-decoration: none;
  display: block;
}