/* Global styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

html {
  font-size: 16px;
}

body {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-user-select: none; 
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#about {
  display: flex;
  flex-direction: column;
  align-items:left;
  justify-content:left;
  width: 90%;
  margin: 2rem 0;
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  animation: fadeInUp 0.6s ease-in-out;
}

#about h3 {
  font-weight: 300;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.qa {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-in-out;
}

/* Form styles */

#form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 2rem 0;
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  animation: fadeInUp 0.6s ease-in-out;
}

.input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  border: none;
  background-color: #e6e6e6;
  border-radius: 20px;
  outline: none;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.btn:hover {
  transform: translateY(-5px);
  background-color: #666;
  box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.67);
}

/* Table styles */

#emails {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#emails table {
  width: 100%;
  border-collapse: collapse;
}

#emails th,
#emails td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

#emails th {
  background-color: #f2f2f2;
  font-weight: 600;
}

#emails tbody tr:hover {
  background-color: #f5f5f5;
}

#emails .view-email-btn {
  background-color: #5E5E5E;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#emails .view-email-btn:hover {
  background-color: #fff;
  color: #5E5E5E;
  border: 1px solid #5E5E5E;
}

#emails-body tr:last-child td {
  border-bottom: none;
}

/* Footer styles */
#status {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

#status a {
  color: #5E5E5E;
  text-decoration: none;
  font-weight: 600;
}

a {
  text-decoration: none;
}

header {
  font-size: 150%;
}

#pro-btn {
  color: rgb(255, 255, 255);
  background-color: rgb(51, 150, 12);
  font-weight: bold;
  font-size: medium;
}

#pro-btn a {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1rem;
  background-color: #000000;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}