.login-container {
  align-items: center;
  background-color: #2d2d2d;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 20px;
  max-width: 500px;
  padding: 40px;
  /*width: 100%;*/
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 0;
}

.title {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

.button-google {
  width: 300px;
  background-color: #ffffff;
  color: #1f1f1f;
  border: 1px solid #dadce0;
  padding: 0 12px;
  height: 48px;
  border-radius: 24px;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.button-google:hover {
  background-color: #f6fafe;
  border-color: #d2e3fc;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.google-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 2px;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.button-text {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f1f1f;
}

.alert {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
}

.alert-error {
  background-color: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

.container {
  background-color: #2d2d2d;
  padding: 40px;
  border-radius: 8px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

h1 {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
}

.admin-notice {
  display: none; /* Hide this for cleaner look */
}

.auth-error {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  margin: 0;
}

.current-user {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  margin: 0;
}

.checkmark {
  color: #4CAF50;
  margin-left: 5px;
}

.login-prompt {
  display: none; /* Hide this for cleaner look */
}

.google-button-container {
  width: 100%;
}

.google-button {
  height: 40px;
  border-radius: 4px;
  box-shadow: 0 3px 4px 0 rgba(0,0,0,.25);
  display: inline-flex;
  align-items: center;
  background-color: #4285f4;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}

.google-button:hover {
  box-shadow: 0 0 6px #4285f4;
}

.google-button:active {
  background: #1669F2;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.admin-nav {
  display: flex;
  gap: 10px;
}

.admin-nav a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #3d3d3d;
}

.admin-nav a:hover {
  background-color: #4a4a4a;
}

.admin-nav a.active {
  background-color: #7289DA;
}

.user-info {
  text-align: right;
  margin-bottom: 20px;
  color: #888;
}

.records-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.records-table th, .records-table td {
  padding: 5px;
  text-align: left;
  border-bottom: 1px solid #3d3d3d;
}

.records-table th {
  background-color: #333;
  color: #fff;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.table-caption {
  color: #BDB76B;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 2px rgb(212, 224, 45);
}

.profile-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background-color: #2d2d2d;
  border-radius: 8px;
}

.profile-info {
  flex: 1;
  margin-bottom: 20px;
}

.profile-info h2 {
  margin-top: 0;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.profile-info p {
  margin: 8px 0;
}

.add-user-button {
  background-color: #FF4136;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.add-user-button:hover {
  background-color: #E42F28;
}

.sign-button {
  display: inline-block;
  padding: 3px 6px;
  background-color: #ff4444;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.sign-button:hover {
  background-color: #ff6666;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #2C2F33;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  border-radius: 8px;
  color: white;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #666;
  background-color: #40444B;
  color: white;
}

.email-section, .ordination-info-section {
  margin-top: 20px;
}

.email-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.email-table {
  width: 100%;
  margin-top: 10px;
}

.email-table th, .email-table td {
  padding: 8px;
  text-align: left;
}

.submit-btn {
  background-color: #7289DA;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #5b6eae;
}

/* Keeping other useful styles from original useradmin.css */
.discord-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.discord-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discord-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.discord-username {
  color: #7289DA;
  font-weight: bold;
  font-size: 0.9em;
}

.discord-login-button {
  display: inline-block;
  background-color: #43b581;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 8px;
  margin-left: 20px;
}

.discord-login-button:hover {
  background-color: #3ca374;
}

.discord-invite-button {
  background-color: #43b581;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.discord-invite-button:hover {
  background-color: #3ca374;
}

.discord-joined-text {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7),
               0 0 20px rgba(255, 215, 0, 0.5),
               0 0 30px rgba(255, 215, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.7),
                   0 0 20px rgba(255, 215, 0, 0.5),
                   0 0 30px rgba(255, 215, 0, 0.3);
  }
  to {
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.9),
                   0 0 30px rgba(255, 215, 0, 0.7),
                   0 0 40px rgba(255, 215, 0, 0.5);
  }
}

.discord-checking-text {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.7),
               0 0 20px rgba(76, 175, 80, 0.5),
               0 0 30px rgba(76, 175, 80, 0.3);
  animation: green-glow 1.5s ease-in-out infinite alternate;
}

@keyframes green-glow {
  from {
      text-shadow: 0 0 10px rgba(76, 175, 80, 0.7),
                   0 0 20px rgba(76, 175, 80, 0.5),
                   0 0 30px rgba(76, 175, 80, 0.3);
  }
  to {
      text-shadow: 0 0 20px rgba(76, 175, 80, 0.9),
                   0 0 30px rgba(76, 175, 80, 0.7),
                   0 0 40px rgba(76, 175, 80, 0.5);
  }
}

.alert.alert-warning {
  text-align: center;
  padding: 20px;
  background-color: #2C2F33;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 400px;
}

.login-container > *:last-child {
  margin-bottom: 0;
} 