#page-guide-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.page-guide-trigger {
    width: 60px;
    height: 60px;
    background: #2196F3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(33, 150, 243, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    }
}

/* Hover effect */
.page-guide-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(33, 150, 243, 0.5);
    animation: none; /* Stop pulsing on hover */
    background: #1976D2; /* Slightly darker blue on hover */
}

/* Click effect */
.page-guide-trigger:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.page-guide-content {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-guide-hidden {
    display: none !important;
}

#page-guide-options {
    margin: 15px 0;
}

.page-guide-option {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-size: 15px;
}

.page-guide-option:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

#page-guide-exit,
#page-guide-back {
    background: #ff4444;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

#page-guide-exit:hover,
#page-guide-back:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
}

#page-guide-link {
    display: inline-block;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    margin-right: 10px;
    transition: all 0.2s ease;
    font-weight: 400;
font-size: 18px;
}

#page-guide-link:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}