/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

/* Container for centering content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
header {
  background-color: #d72630; /* Red */
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
  padding: 40px 0;
  text-align: center;
}

main h1 {
  color: #ff0000; /* Red */
  margin-bottom: 20px;
}

main p {
  font-size: 18px;
  color: #333;
}

/* Footer Styles */
footer {
  background-color: #ff0000; /* Red */
  color: #ffffff; /* White */
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

}

/* Responsive Design for Header */
@media (max-width: 768px) {
main h1 {
  font-size: 24px;
}

main p {
  font-size: 16px;
}
}


/* Header Styles */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #d72630;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 150px;
  height: auto;
}

.user-info {
  text-align: right;
  color: #fff;
}

.employee-name {
  font-size: 16px;
  font-weight: bold;
}

.employee-id {
  font-size: 14px;
}

.logout-button {
  background-color: #fff;
  color: #d72630;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.logout-button:hover {
  background-color: #ff4d4d;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .user-info {
    margin-top: 10px;
  }

  .logout-button {
    margin-top: 10px;
  }
}
