.admin-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.google-signin-btn {
    background-color: white;
    color: #757575;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-signin-btn:hover {
    background-color: #f5f5f5;
}

.google-signin-btn img {
    margin-right: 10px;
    width: 20px;
}

.error-message {
    color: red;
    margin-top: 10px;
}
/* Add these to the existing admin.css */
#userInfo {
    text-align: center;
    margin-bottom: 20px;
}

#userPhoto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.dashboard-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.dashboard-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dashboard-btn:first-child {
    background-color: var(--accent-color);
    color: white;
}

.logout-btn {
    background-color: var(--secondary-color);
    color: white;
}