/* Avatar */
.gp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-top: 10px;
    cursor: pointer;
}

/* User Menu */
.gp-user-menu {
    position: relative;
    display: inline-block;
}

/* Dropdown */
.gp-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    min-width: 250px;
    z-index: 999;
}

.gp-user-menu:hover .gp-dropdown {
    display: block;
}

/* Login Button */
.gp-login-btn {
    display: inline-block;
    width: 100px;        /* Set width */
    height: 40px;        /* Set height */
    line-height: 40px;   /* Center text vertically */

    background-color: green !important;
    color: #ffffff !important;

    text-align: center;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;

    border: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.gp-login-btn:hover {
    background-color: darkgreen !important;
    color: #000000 !important;
}

/* Toast Messages */
.gp-toast {
    position: fixed;
    top: 75px;
    right: 20px;
    padding: 12px 18px;
    color: #fff;
    border-radius: 5px;
    z-index: 9999;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gp-toast.success {
    background: #28a745;
}

.gp-toast.error {
    background: #dc3545;
}