/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body background and text color */
body {
  font-family: Arial, sans-serif;
  cursor: url('Cursor_Orange.png'), auto;
  background-image: url('Sun.png');
  background-color: #c5c3c6;
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center top;
  color: #333;
}

a:hover {
  cursor: url('Cursor_Blue.png'), auto;
}

/* Sidebar */
#sidebar {
  background-color: #eae8ec;
  box-shadow: 0px 4px 10px;
  width: 200px;
  position: absolute; /* Sidebar is absolutely positioned */
  top: 50px;
  left: 250px;
  padding: 30px;
  padding-bottom: 30px;
}

/* Sidebar links */
#sidebar ul {
  list-style-type: none;
  padding-top: 10px;
}

#sidebar li {
  margin-bottom: 10px;
}

#sidebar a {
  text-decoration: underline;
  color: #3AA9DE;
}

#sidebar a:hover {
  font-style: italic;
}



/* Guestbook-specific content box */
#guestbook {
  background-color: #eae8ec;
  box-shadow: 0px 5px 12px;
  width: 500px;
  margin: 60px auto;
  padding: 20px;
  position: relative;
  top: 50px;
}

form input, form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-family: inherit;
}

form button {
  background-color: #3A76DE;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.entry {
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border-left: 4px solid #3AA9DE;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

/* Header colors */
h1, h2, h3 {
  color: #3A76DE; /* Change the color of all headers to match the theme */
}
