/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  background-color: #ffc4b8; /* Light peach */
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

header {
  text-align: center;
  background-color: #282d3c; /* Dark background for header */
  color: #ffc4b8; /* Light text */
  padding: 20px;
}

header h1 {
  font-size: 2.5em;
}

.slides {
  flex-grow: 1;
  text-align: center;
  padding: 20px;
}

.slide {
  margin: 20px;
  background-color: #f69197; /* Soft pink */
  padding: 20px;
  border-radius: 10px;
}

footer {
  background-color: #282d3c; /* Dark background for footer */
  color: #ffc4b8; /* Light text */
  text-align: center;
  padding: 10px 0;
}

footer ul {
  display: flex;
  justify-content: center;
  padding: 0;
}

footer li {
  list-style-type: none;
  margin: 0 20px;
}

footer a {
  color: #ffc4b8; /* Light peach links */
  text-decoration: none;
  font-size: 1.2em;
}

/* Button styling */
footer button {
  background-color: #282d3c; /* Dark color */
  color: #ffc4b8; /* Light text */
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
}

footer button:hover {
  background-color: #5b5d70; /* Muted blue on hover */
}

footer button:disabled {
  background-color: #ccc; /* Disabled button color */
  cursor: not-allowed;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f69197; /* Soft pink for header */
  color: #282d3c; /* Dark text for contrast */
}

tr:nth-child(even) {
  background-color: #f2f2f2; /* Light gray for alternate rows */
}

tr:hover {
  background-color: #ddd; /* Highlight row on hover */
}
