body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.container_full {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 800px;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

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

label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #45a049;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
    /* font-weight: bold; Removed to match button style generally, but kept color */
}

/* OAuth Buttons */
.google-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #db4437;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
}

.google-btn:hover {
    background-color: #c53929;
}

/* Utility */
.divider {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}

.message {
    color: green;
    margin-bottom: 15px;
}

.error {
    color: red;
    margin-bottom: 15px;
    text-align: center;
}

pre {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
}

div#result_countries {
	max-height: 20em;
	overflow: scroll;
}