
/* General styles from style.css */

body.settings-page {
  background-image: url('settings.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}
body.theme-page {
  background-image: url('change_theme1.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}


body.change-pin-page {
  background-image: url('Change_pin.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}


/* Settings-specific styles */
.container {
  padding: 2rem;
  text-align: center;
}
h1 {
  font-size: 2.5rem;
}
.theme-options button {
  padding: 1rem 2rem;
  margin: 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #444;
  color: white;
  transition: background 0.3s;
}
.theme-options button:hover {
  background-color: #666;
}

/* Back button styling */
.back-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Theme page specific */
.theme-page {
  background-image: url('change_theme1.png');
}

/* Theme container styles */
.theme-container {
  max-width: 600px;
  margin: 5rem auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.theme-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.theme-buttons button {
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: #008080;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}
.theme-buttons button:hover {
  background-color: #00b3b3;
}
