/* Profile Tutorial Styles */
.profile-tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: block;
    pointer-events: none;
}

.profile-tutorial-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.profile-tutorial-highlight {
    position: relative !important;
    z-index: 20001 !important;
    box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.5) !important;
    border-radius: 8px !important;
    transition: box-shadow 0.3s ease;
}

.profile-tutorial-tooltip {
    position: fixed;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    max-width: 280px;
    width: 280px;
    pointer-events: auto;
    z-index: 20002;
    padding: 1.5rem;
    animation: profileTutorialFadeIn 0.3s ease;
}

.profile-tutorial-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c2185b;
}

.profile-tutorial-text {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

.profile-tutorial-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.profile-tutorial-skip,
.profile-tutorial-next {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.profile-tutorial-skip {
    background: #f5f5f5;
    color: #666;
}

.profile-tutorial-skip:hover {
    background: #e0e0e0;
}

.profile-tutorial-next {
    background: #c2185b;
    color: white;
}

.profile-tutorial-next:hover {
    background: #a91650;
}

@keyframes profileTutorialFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}