/* Christmas Theme Styles */

/* Background */
body {
  background-image: url("../images/WebGroundCM.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'YouTube Sans', sans-serif;
  color: #fff;
}

/* Sidebar */
.sidebar {
  background: rgba(0, 0, 0, 0.6); /* slightly dark overlay */
}

/* Buttons */
.button {
  background: linear-gradient(to bottom, #28a745 0%, #1e7e34 100%);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.6),
              inset 0 -1px 2px rgba(0,0,0,0.3),
              0 4px 8px rgba(0,0,0,0.4);
}

/* Striped Christmas variant */
.button.striped {
  background: repeating-linear-gradient(
    45deg,
    #28a745 0px,
    #28a745 40px,
    #c0392b 40px,
    #c0392b 80px
  );
  background-size: 225px 225px;
}
