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

html, body {
  min-height: 100%;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #4B0082, #000000);
  background-attachment: fixed;
}


/* Container with dark purple gradient background */
.container {
  height: 100%;
  background: linear-gradient(135deg, #4B0082, #000000);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

/* Header styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* 3D Word Art for header title */
.word-art-large {
  font-family: 'Impact', sans-serif;
  font-size: 2.5em;
  color: #fff;

}

.header .logo img {
  max-width: 120px;
  height: auto;
}

/* Main content area */
.main {
  flex: 1;
  display: flex;
  flex-direction: column; /* This forces vertical stacking */
  align-items: center;
  justify-content: center;
}

/* Login form styling */
.login-form {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  color: white;
}

.login-form form {
  display: flex;
  flex-direction: column;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.login-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.login-form input {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

.login-form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4B0082;
  color: white;
  font-size: 1em;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #3a0066;
}

/* Footer with time and weather info */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  background: transparent;
}

/* 3D Word Art for footer elements */
.word-art-footer {
  font-family: 'Impact', sans-serif;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 2px 2px 0 #000, 4px 4px 0 #333;
}

/* Additional dashboard-specific CSS */
.dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.screen-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-content {
  border: 1px solid #555;
  padding: 10px;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

.update-form {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 5px;
}

.update-form label,
.update-form input {
  margin: 5px 0;
  width: 100%;
}

.update-form button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4B0082;
  color: white;
  cursor: pointer;
}

.update-form button:hover {
  background-color: #3a0066;
}

/* Footer overrides to center the logout button at the bottom */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
