@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&family=Trebuchet+MS&display=swap');

body {
    font-family: 'Lexend', 'Trebuchet MS', sans-serif;
    background-color: #f0f2f5; /* Match background color from style1.css */
    text-align: center;
    padding: 50px; /* Add padding to match style1.css */
}

.container {
    margin-top: 50px;
    max-width: 400px; /* Add max width for consistency */
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    background-color: white; /* Match style1.css form container */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match shadow from style1.css */
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    color: #4285F4;
    font-family: 'Lexend', 'Trebuchet MS', sans-serif;
}

.hidden {
    display: none;
}

#loading {
    color: #FF9900;
    font-family: 'Lexend', 'Trebuchet MS', sans-serif;
}

#user-permissions {
    background-color: #FFFFFF;
    border: 1px solid #DDD;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px; /* Match rounded corners in style1.css */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for consistency */
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: normal;
}

form input, form select, form button {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-family: 'Lexend', 'Trebuchet MS', sans-serif;
    font-size: 1em; /* Consistent with style1.css */
}

form input:focus, form select:focus {
    border-color: #1877f2;
}

form button {
    background-color: #1877f2;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    text-align: center;
    font-weight: bold;
}

form button:hover {
    background-color: #155db2;
}
.google-signout-button {
  background-color: #ffffff;
  color: #4285f4;
  border: 1px solid #dadce0;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  margin-top: 20px;
}

.google-signout-button:hover {
  background-color: #f1f3f4;
  box-shadow: 0 2px 5px rgba(60, 64, 67, 0.15);
}
