
.loading {
    font-size: 18px;
    color: #555;
    text-align: center;
}

.error {
    color: #b22222;
    background-color: #ffe5e5;
    padding: 10px;
    border: 1px solid #b22222;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

.user-profile {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin: auto;
	width: 80%;
}

.user-welcome {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.user-details {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
    font-size: 16px;
    line-height: 1.6;
}

.user-details p {
    margin: 5px 0;
}

.user-details strong {
    color: #555;
}

button {
	background-color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
	background-color: #D3D3D3;
}
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.email-edit-container {
    margin-top: 20px;
	margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
	max-width: 400px;
}

.email-edit-container.hidden {
    display: none;
}

.email-edit-container form {
    width: 100%;
    max-width: 400px;
}

.email-edit-container label {
    margin-bottom: 5px;
    font-weight: bold;
	text-align:left;
}

.email-edit-container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.email-edit-container button[type="submit"] {
    background-color: #fff;
}
.email-edit-container button:hover[type="submit"] {
    background-color: #D3D3D3;
}