body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #333;
}

label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #666;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}


/* Your existing styles */

.user-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    /* Add your additional styling properties here */
}

.user-info-box h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px; /* Adjust the font size as needed */
}

.user-info-box p {
    margin-bottom: 10px;
    color: #666;
    font-size: 18px; /* Adjust the font size as needed */
}

.logout-link {
    color: #007bff;
    text-decoration: none;
    font-size: 16px; /* Adjust the font size as needed */
    transition: color 0.3s ease;
}

.logout-link:hover {
    color: #0056b3;
}


/* Add this at the end of your styles.css to style the error message */
.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 10px;
}

.tagline {
    color: #888;
    font-size: 16px;
    margin-top: -10px;
}

.cancel-link {
    display: inline-block;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cancel-link:hover {
    color: #007bff;
}

/* Add your animation styles here */


.update-link {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.update-link:hover {
    color: #0056b3;
}

.update-button,
.cancel-button {
    background-color: #007bff !important;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.update-button,
.cancel-button {
    display: inline-block; /* This ensures the button displays inline */
    margin-top: 10px;
    background-color: #007bff !important;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center; /* Center the button text */
}

.update-button:hover,
.cancel-button:hover {
    background-color: #0056b3 !important;
}
/* Add this at the end of your styles.css */
.treelink-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.treelink-header {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.treelink {
    display: inline-block;
    margin-top: 5px;
    padding: 5px 0;
    text-decoration: none;
    color: #007bff !important;
    transition: color 0.3s ease;
}

.treelink:hover {
    color: #0056b3 !important;
}

/* Add a media query for small screens */
@media (max-width: 600px) {
    .update-button,
    .cancel-button,
    .treelink {
        display: block;
        margin-top: 10px;
        padding: 10px 0;
        font-size: 16px;
        text-align: center;
    }
}

.link-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.link-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.link-button:hover {
    background-color: #0056b3;
}
