/*
 * styles.css
 * This file contains the CSS styles for the JavaScript test page and photo gallery.
 */

body { 
    background-color: black;
    color: white;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 250px; /* Add this line to account for the sidebar */
    padding-left: 20px; /* Optional for extra gap */
}

h1 {
      text-align: center;
}

.photo-gallery {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 50px;
}

.photo-gallery img {
      max-width: 350px;
      border-radius: 8px;
}



ul {
  text-align: left;
  display: inline-block;
}

#value {
  font-size: 4rem;
  display: block;
  margin: 30px 0;
  text-align: center; /* Center the text inside the span */
}
/* Make the buttons bigger */
.buttons .btn {
  font-size: 1.5rem;
  padding: 15px 32px;
  margin: 0 10px;
  border-radius: 8px;
}
.buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* Add to your styles.css */
.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

side-bar h2{
  text-align: center;
  margin-top: 0;
}
.sidebar-btn {
  display: block;
  background: #444;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.sidebar-btn:hover {
  background: #1e90ff;
  color: #fff;
}
side-bar {
  display: block;
  width: 200px;
  position: fixed;
  top: 0;
  left: 0;
  background: #222;
  color: #fff;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}